-
MySQL Date函数
NOW()
返回当前的日期和时间CURDATE()
返回当前的日期CURTIME()
返回当前的时间DATE()
提取日期或日期/时间表达式的日期部分EXTRACT()
返回日期/时间按的单独部分DATE_ADD()
给日期添加指定的时间间隔DATE_SUB()
从日期减去指定的时间间隔DATEDIFF()
返回两个日期之间的天数DATE_FORMAT()
用不同的格式显示日期/时间
-
MySQL十进制转化为二进制、八进制、十六进制
-
BIN(N)返回二进制值N的一个字符串表示
> select bin(124); +----------+ | bin(124) | +----------+ | 1111100 | +----------+ 1 row in set (0.00 sec)
-
OCT(N)返回八进制值N的一个字符串表示
>select oct(124); +----------+ | oct(124) | +----------+ | 174 | +----------+ 1 row in set (0.00 sec)
-
HEX(N)返回十六进制值N的一个字符串表示
>select hex(124); +----------+ | hex(124) | +----------+ | 7C | +----------+ 1 row in set (0.00 sec)
-
-
MySQL日期 字符串 时间戳互转
-
获取当前时间
>SELECT now(); +---------------------+ | now() | +---------------------+ | 2017-04-10 15:20:16 | +---------------------+ 1 row in set (0.01 sec)
-
时间转化格式
>SELECT date_format(now(), '%Y-%m-%d'); +--------------------------------+ | date_format(now(), '%Y-%m-%d') | +--------------------------------+ | 2017-04-10 | +--------------------------------+ 1 row in set (0.00 sec)
-
获取当前的时间戳
>SELECT unix_timestamp(now()); +-----------------------+ | unix_timestamp(now()) | +-----------------------+ |1491809113 | +-----------------------+ 1 row in set (0.00 sec)
-
时间戳转字符串
>SELECT from_unixtime(1491809381,'%Y-%m-%d %H:%i:%s'); +-----------------------------------------------+ | from_unixtime(1491809381,'%Y-%m-%d %H:%i:%s') | +-----------------------------------------------+ | 2017-04-10 15:29:41 | +-----------------------------------------------+ 1 row in set (0.00 sec)
-
-
字符截取函数
SUBSTR function returns the sub string within a string.
Syntax:
SUBSTR(string, start_position, length)
or
SUBSTRING (string, start_position, length)
In MySQL both SUBSTR and SUBSTRING will work. SUBSTR is in ANSI standard.
PS:此处有坑,start_position 起始值为: 1
SUBSTRING_INDEX
SELECT SUBSTRING_INDEX('www.mysql.com', '.', 2); // ouput 'www.mysql'
LEFT(str,len)
返回字符串str的最左面len个字符。RIGHT(str,len)
返回字符串str的最右面len个字符。 -
字符连接函数
- CONCAT(str1,str2,…) 返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。
- CONCAT_WS(separator,str1,str2,...)
CONCAT_WS() 代表 CONCAT With Separator ,是CONCAT()的特殊形式。第一个参数是其它参数的分隔符。分隔符的位置放在要连接的两个字符串之间。分隔符可以是一个字符串,也可以是其它参数。
注意:
如果分隔符为 NULL,则结果为 NULL。函数会忽略任何分隔符参数后的 NULL 值。
-
有外键约束的情况下,删除表
SET foreign_key_checks = 0; -- Drop tables DROP TABLE table_name; -- Drop views DROP VIEW view_name; SET foreign_key_checks = 1;
-
CAST VS CONVERT
-
CAST(expr AS type)
The CAST() function takes an expression of any type and produces a result value of the specified type, similar to CONVERT(). For more information, see the description of CONVERT().
CAST() is standard SQL syntax. -
CONVERT(expr,type), CONVERT(expr USING transcoding_name)
The CONVERT() function takes an expression of any type and produces a result value of the specified type.
Discussion of CONVERT(expr, type) syntax here also applies to CAST(expr AS type), which is equivalent.
CONVERT(... USING ...) is standard SQL syntax. The non-USING form of CONVERT() is ODBC syntax.SELECT CAST ('10' as int) * 20, CONVERT (int, '10') * 20
-