2019年8月29日
摘要: 1.查询性别为null的数据 select * from student where sex is null 2.查询性别不为null的数据 seleect * from student where is not null 3.查询性别为空字符串的数据 select * from student w 阅读全文
posted @ 2019-08-29 14:58 小蜘zhu 阅读(121) 评论(0) 推荐(0)
摘要: {student 是表名} -- 插入数据INSERT INTO student VALUES(1,'雄大','2019-07-15');-- 插入指定数据INSERT INTO student(pid,tname) VALUES(2,'兄弟');-- 修改数据UPDATE student SET 阅读全文
posted @ 2019-08-29 10:29 小蜘zhu 阅读(95) 评论(0) 推荐(0)