Mysql如何使用帮助
Mysql如何使用帮助
mysql控制台使用命令:
mysql> ? if; //帮助格式? 想要知道的问题;Many help items for your request exist.To make a more specific request, please type 'help
继续:
mysql> ? if function;Name: 'IF FUNCTION'Description:Syntax:IF(expr1,expr2,expr3)If expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returnsexpr2; otherwise it returns expr3. IF() returns a numeric or stringvalue, depending on the context in which it is used.URL: SELECT IF(1>2,2,3); -> 3mysql> SELECT IF(1<2,'yes','no'); -> 'yes'mysql> SELECT IF(STRCMP('test','test1'),'no','yes'); -> 'no'mysql>
看清楚了吧,就是这么简单。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~