博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 中if(),left(),right(),with rollup的用法
阅读量:4943 次
发布时间:2019-06-11

本文共 637 字,大约阅读时间需要 2 分钟。

if的用法:mysql> select if(10>9,10,9) as bigger from dual;+--------+| bigger |+--------+|     10 |+--------+left()和right()的用法:mysql> select left('abcdeft',4) a,right('abcdeft',4) b;+------+------+| a    | b    |+------+------+| abcd | deft |+------+------+with rollup的用法:select substr(tDeliverdate,1,10) riqi,sum(dSalesPrice) sale_amount from test.sale_order_detail group by riqi with rollup;+------------+-------------+| riqi       | sale_amount |+------------+-------------+| 2014-12-31 |    0.300000 || 2015-01-17 |  240.000000 || NULL       |  240.300000 |+------------+-------------+

 

转载于:https://www.cnblogs.com/rabbit168/p/4236346.html

你可能感兴趣的文章