当前位置: 技术问答>java相关
mysql的入门问题,兼顾散分!
来源: 互联网 发布时间:2017-04-02
本文导语: +------+------------+--------+ | u_id | u_name | u_date | +------+------------+--------+ | 0 | helloworld | NULL | | 1 | ok? | NULL | | 2 | hh | NULL | +------+------------+--------+ 想实现...
+------+------------+--------+
| u_id | u_name | u_date |
+------+------------+--------+
| 0 | helloworld | NULL |
| 1 | ok? | NULL |
| 2 | hh | NULL |
+------+------------+--------+
想实现如上的效果,但是每次只对u_name列操作,
如
insert into look (u_name) values ('ok?');
然后查看的时候u_id列的值已经自动加一。
然后最好还能让u_date列自动取值为当前日期。
请指教!
| u_id | u_name | u_date |
+------+------------+--------+
| 0 | helloworld | NULL |
| 1 | ok? | NULL |
| 2 | hh | NULL |
+------+------------+--------+
想实现如上的效果,但是每次只对u_name列操作,
如
insert into look (u_name) values ('ok?');
然后查看的时候u_id列的值已经自动加一。
然后最好还能让u_date列自动取值为当前日期。
请指教!
|
create table look (
u_id int unsigned auto_increment,
u_name varchar(20) not null,
u_date timestamp(8),
primary key (u_id)
);
insert into look (u_name) values ('ok?');
select * from look;
u_id int unsigned auto_increment,
u_name varchar(20) not null,
u_date timestamp(8),
primary key (u_id)
);
insert into look (u_name) values ('ok?');
select * from look;
|
建表的时候用
create table look (
u_id int not null auto_increment,
u_name varchar(20),
u_date date default getdate());
试试
create table look (
u_id int not null auto_increment,
u_name varchar(20),
u_date date default getdate());
试试
|
找个mysql第三方工具用更加方便。如:DBTool,....
甚于sql语言网上很多,搜索是你最好的答案。
甚于sql语言网上很多,搜索是你最好的答案。
|
我不会mysql但是祝你成功
|
http://de-de.51.net/document/mysql.chm
自己到那里下个帮助看看
自己到那里下个帮助看看
|
我没有用过 接点分先
祝你成功
祝你成功
|
如楼上