mysql相关
ccsbn
这个作者很懒,什么都没留下…
展开
-
mysql将表清空并且id从1开始
一般完整的数据库都有外键约束所以先禁用外键约束SET FOREIGN_KEY_CHECKS = 0;然后用truncate命令TRUNCATE TABLE TABLE_NAME;最后启用外键约束就好了原创 2018-06-12 10:18:30 · 231 阅读 · 0 评论 -
mysql更新多条数据
更新单条数据, update user set sex = 1 where mobile = '15000001111'; 更新user表字段sex为1,条件是mobile为15000001111 更新多条同样的数据就可以用 in update user set sex = 1 where mobile in('15000001111','15000001112',...); 用‘,...原创 2018-08-02 09:59:40 · 3988 阅读 · 0 评论 -
mysql update 用一个表更新另外一个表
Solution 1: 修改1列 update student s, city c set s.city_name = c.name where s.city_code = c.code; Solution 2: 修改多个列 update a, b set a.title=b.title, a.name=b.name where a.id=b.id 个人还是喜欢第一个方法...原创 2018-09-13 15:09:39 · 958 阅读 · 1 评论