摘要: 1.单表查询:select * from 表名 where id = 111 2.查询表内数据并以id排序:select * from 表名 order by id (降序:desc/升序:asc) 3.多表连接查询:select 表a.id,name...,表b.age,birthday... f 阅读全文
posted @ 2019-03-25 21:17 Django丶 阅读(153) 评论(0) 推荐(0) 编辑