1. 首页
  2. 课程学习
  3. C++/C
  4. SQL 列不同的表查询结果合并操作

SQL 列不同的表查询结果合并操作

上传者: 2020-12-17 01:59:43上传 PDF文件 62.83KB 热度 13次
两个不同的表进行查询,需要把结果合并, 比如table1的列为 id, user_id, type_id,pro_id; table2的列为 id,user_id,collect_id;分别如下图所示 table1: table2: 将两个表的查询结果合并到一起的查询语句为 select *, null as collect_id from table1 where user_id = 527 union select id,user_id,null as type_id,null as pro_id, collect_id from table2 where user_id = 527
用户评论