随笔分类 -  SQL

摘要:1.交叉连接 返回两个表的笛卡尔积:select * from A,B 比如A的id有{1,2,3},B的aid有{2,3,4},得到的数据: id .....aid..... 1 2 1 3 1 4 2 2 .... .... 3 3 3 4 2.内连接--inner join(inner可以省略 阅读全文
posted @ 2019-06-17 19:36 Luo丶D 阅读(3786) 评论(0) 推荐(0)