摘要: table a(id, type): id type 1 1 2 1 3 2 table b(id, class): id class 1 1 2 2 sql语句1:select a.*, b.* from a left join b on a.id = b.id and a.type = 1; s 阅读全文
posted @ 2017-02-08 16:08 大元帅 阅读(247) 评论(0) 推荐(0) 编辑