码迷,mamicode.com
首页 > 数据库 > 详细

mysql常用函数

时间:2014-12-18 23:36:14      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   ar   io   color   os   sp   on   

时间戳转换

datetime转换为时间戳:UNIX_TIMESTAMP()

时间戳转换为datetime:FROM_UNIXTIME()

mysql> create table testtime(id int auto_increment not null,timestr int,PRIMARY KEY(id));
Query OK, 0 rows affected (0.01 sec)

mysql> desc testtime;
+---------+---------+------+-----+---------+----------------+
| Field   | Type    | Null | Key | Default | Extra          |
+---------+---------+------+-----+---------+----------------+
| id      | int(11) | NO   | PRI | NULL    | auto_increment |
| timestr | int(11) | YES  |     | NULL    |                |
+---------+---------+------+-----+---------+----------------+
2 rows in set (0.01 sec)

mysql> insert into testtime(timestr) values(UNIX_TIMESTAMP(2014-06-01 21:00:00));
Query OK, 1 row affected (0.00 sec)

mysql> select FROM_UNIXTIME(timestr) from testtime;
+------------------------+
| FROM_UNIXTIME(timestr) |
+------------------------+
| 2014-06-01 21:00:00    |
+------------------------+
1 row in set (0.00 sec)

mysql> 

 

大小写转换

小写转换为大写:UPPER()

大写转换为小些:LOWER()

mysql> select LOWER(title) from film limit 4\G
*************************** 1. row ***************************
LOWER(title): academy dinosaur
*************************** 2. row ***************************
LOWER(title): ace goldfinger
*************************** 3. row ***************************
LOWER(title): adaptation holes
*************************** 4. row ***************************
LOWER(title): affair prejudice
4 rows in set (0.00 sec)

 

mysql常用函数

标签:des   style   blog   ar   io   color   os   sp   on   

原文地址:http://www.cnblogs.com/walter371/p/4172818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!