摘要: SELECT * FROM `t_tb_youxuan` where id >1 and id <1000 and cate like '%女%' ORDER BY id asc LIMIT 30 表名 条件1 条件2 模糊查询 by-id的 倒序 截取从1到20条 select * from tm 阅读全文
posted @ 2020-11-24 18:46 79524795 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1增 1.1【插入单行】 insert [into] <表名> (列名) values (列值) 例:insert into Strdents (姓名,性别,出生日期) values ('开心朋朋','男','1980/6/15') 1.2【将现有表数据添加到一个已有表】 insert into < 阅读全文
posted @ 2020-11-24 17:48 79524795 阅读(91) 评论(0) 推荐(0) 编辑