码迷,mamicode.com
首页 > 数据库 > 详细

mysql 查询语句

时间:2020-01-09 18:41:03      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:update   ble   info   inf   src   cas   time   rom   from   

1.//一个sql返回多个总数 统计数据

select count(*) AS num,count(case when status = 1 then status end) as status_1_num,count(case when status = 0 then status end) as status_0_num from ws_users;

技术图片

 

 2.时间戳查询转换

 select id, from_unixtime(time_line, ‘%Y-%m-%d %h:%i:%s‘) as day  from ws_chat_log where id >10;

技术图片

 

 

3.替换某字段的内容的语句
数据库中有aaa的文字换成 bbb
update ws_users set user_name = REPLACE(user_name, ‘李志刚2‘, ‘李志刚3‘)  where (user_name like ‘%李志刚2%‘); 
 
技术图片

 

 技术图片

 

 



mysql 查询语句

标签:update   ble   info   inf   src   cas   time   rom   from   

原文地址:https://www.cnblogs.com/kevin-yang123/p/12172800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!