最新消息: 新版网站上线了!!!

MySQL中应注意的问题

1、Cast()/Convert()

    cast(value as Type),convert(value,type)(注意:SQLServer中为convert(type,value,parameter)),其中Type可用类型为:    

    ①字符型(char());

    ②日期:Date;

    ③时间:Time;

    ④日期时间:datetime;

    ⑤浮点型:decimal();

    ⑥整型:signed;

    ⑦无符号整型:unsigned。

 

2、isnull()/ifnull()

    isnull(value)返回值为bool型,0表示Value不是NULL,1表示Value是NULL

    ifnull(value,NewValue)如果Value为NULL,则将Value替换成NewValue(与SQLServer中isNULL()功能一样)

 
.....

转载请注明:谷谷点程序 » MySQL中应注意的问题