mysql函数

1、mysql中length函数和char_length的区别:

 length:   是计算字段的长度一个汉字是算三个字符,一个数字或字母算一个字符

 char_length:不管汉字还是数字或者是字母都算是一个字符

 

2、总结mysql取得系统时间的功能

select now() as Systime;

select current_date as Systime;

select sysdate() as Systime;

你可能感兴趣的:(mysql)