27岁,山西运城人,职业电商经理人,前端开发工作者,从事过网站建设、网络推广、SEO、SEM、信息流推广、二类电商、网络运维、软件开发,等相关电商工作,经验较为丰富,小米技术社区致力于为广大从事Web前端开发的人员提供一些力所能及的引导和帮助 ...[更多]
E-mail:mzze@163.com
Q Q:32362389
W X:xiaomi168527
27岁,山西运城人,职业电商经理人,网络工程师兼运维,从事过运营商网络建设,企业网络建设、优化。数据中心网络维护等通过,经验丰富,座右铭:当自己休息的时候,别忘了别人还在奔跑。 ...[更多]
大于花一样的年龄,河南郑州是我家,2010年在北京接触团购网,2011年进入天猫淘宝一待就是四年,如今已经将设计走向国际化(ps:误打误撞开始进入阿里巴巴国际站的设计,嘿嘿)五年电商设计,丰富经验,从事过天猫淘宝阿里各项设计,店铺运营,产品拍摄;我将我的经历与您分享是我的快乐!座右铭:越努力越幸运! ...[更多]
E-mail:97157726@qq.com
Q Q:97157726
//替换phome_ecms_soft的onclick字段数值为857-3857之间,切只有id在1916到1980之间的数据执行 update phome_ecms_soft SET onclick=FLOOR(857 + (RAND() * 3000)) where id between 1916 and 1980;
拓展:随机数的用法
//查询年龄为18,28,38的人 where age in(18,28,38)
//查询年龄为18,28,38的人 where age not in (18,28,38)
//查询年龄12-18的人 where age between 12 and 18
//查询年龄不在12-18的人 where age not between 12 and 18;
//判断年龄是否为空 where age is null
//判断年龄不为空 where age is not null
//sql 查询某字段为空 select * from 表名 where 字段名 is null //sql 查询某字段为空写法2 select * from phome_ecms_news_data_1 where newstext = '' //sql 查询newstext =""字段为空的id select id from phome_ecms_info where newstext ="" //sql 查询某字段不为空 select * from 表名 where 字段名 is not null //sql查询字段1为空且字段2不为空的数据 select * from 表名 where 字段名1 is null and 字段名2 is not null //对比a表中的id和b表中的id有哪些不一样 select id from b where id not in (select id from a);
DELETE
//删除表名为phome_ecms_news_data_1 字段newstex为空且id为17的数据 DELETE from phome_ecms_news_data_1 where newstext = '' and id =17 //删除单个 DELETE from phome_ecms_news_data_1 where newstext = '' and id in(17,18) //删除多个 DELETE from phome_ecms_news_data_1 where name in ('Google','菜鸟教程');//删除name字段为Google和菜鸟的列
本站内容均为小米原创,转载请注明出处:小米技术社区>> 常见mysql数据库命令