您的位置:首页 > 数据库 > MySQL

MySQL中用sql语句插入时期

2010-04-24 17:16 274 查看
mysql> create table testdate(
-> id int not null auto_increment primary key,
-> time date);
Query OK, 0 rows affected (0.30 sec)

mysql> insert into testdate(time) values('2010-4-23');
Query OK, 1 row affected (0.06 sec)

mysql> select * from testdate;
+----+------------+
| id | time |
+----+------------+
| 1 | 2010-4-23|
+----+------------+
1 row in set (0.00 sec)

mysql> alter table testdate add column current time;
Query OK, 1 row affected (0.25 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> update testdate set current='21:18:00' where id=1;
Query OK, 1 row affected (0.06 sec)
Rows matched: 1 Changed: 1 Warnings: 0

mysql> select * from testdate;
+----+------------+----------+
| id | time | current |
+----+------------+----------+
| 1 | 2010-4-23 | 21:18:00 |
+----+------------+----------+
1 row in set (0.00 sec)

mysql> alter table testdate add column combine timestamp;
Query OK, 1 row affected (0.14 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> update testdate set combine='20050504212000' where id=1;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1 Changed: 0 Warnings: 0

mysql> select * from testdate;
+----+------------+----------+---------------------+
| id | time | current | combine |
+----+------------+----------+---------------------+
| 1 | 2010-4-23 | 21:18:00 | 2010-4-23 21:20:00 |
+----+------------+----------+---------------------+
1 row in set (0.00 sec)

mysql> update testdate set combine=2010-4-23 21:22:0' where id=1;
Query OK, 1 row affected (0.03 sec)
Rows matched: 1 Changed: 1 Warnings: 0

mysql> select * from testdate;
+----+------------+----------+---------------------+
| id | time | current | combine |
+----+------------+----------+---------------------+
| 1 | 2010-4-23 | 21:18:00 | 2010-4-23 21:22:00 |
+----+------------+----------+---------------------+
1 row in set (0.00 sec)

mysql> select * from testdate where month(time)=5;
+----+------------+----------+---------------------+
| id | time | current | combine |
+----+------------+----------+---------------------+
| 1 | 2010-4-23 | 21:18:00 | 2010-4-23 21:22:00 |
+----+------------+----------+---------------------+
1 row in set (0.00 sec)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: