摘要: 分组求和mysql> SELECT coalesce(name, '总数'), SUM(singin) as singin_count FROM employee_tbl GROUP BY name WITH ROLLUP; + + + | coalesce(name, '总数') | singin 阅读全文
posted @ 2017-04-13 11:52 chenjingchun 阅读(1576) 评论(0) 推荐(0) 编辑
摘要: 摘自:http://www.runoob.com/mysql/mysql-regexp.html 实例 了解以上的正则需求后,我们就可以更加自己的需求来编写带有正则表达式的SQL语句。以下我们将列出几个小实例(表名:person_tbl )来加深我们的理解: 查找name字段中以'st'为开头的所有 阅读全文
posted @ 2017-04-13 11:39 chenjingchun 阅读(879) 评论(0) 推荐(0) 编辑