求教一个mysql语句 select a.column1,tmp.column1 from a ,(select * from b where ...) where ...求教一个mysql语句select a.column1,tmp.column1 from a ,(select * from b where ...) as tmp where ...tmp相当于从另一个表查询出的结果建
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/06 07:13:46
求教一个mysql语句 select a.column1,tmp.column1 from a ,(select * from b where ...) where ...求教一个mysql语句select a.column1,tmp.column1 from a ,(select * from b where ...) as tmp where ...tmp相当于从另一个表查询出的结果建
求教一个mysql语句 select a.column1,tmp.column1 from a ,(select * from b where ...) where ...
求教一个mysql语句
select a.column1,tmp.column1 from a ,(select * from b where ...) as tmp where ...
tmp相当于从另一个表查询出的结果建立的子表
求教怎么才能让这个 子表 引用外面的表 的字段
就是 ..(select * from b where a.id = b.aid ) as tmp ...
求教一个mysql语句 select a.column1,tmp.column1 from a ,(select * from b where ...) where ...求教一个mysql语句select a.column1,tmp.column1 from a ,(select * from b where ...) as tmp where ...tmp相当于从另一个表查询出的结果建
select a.column1,tmp.column1 from a ,(select * from b where ...) where ...
中(select * from b where ...) temp (别名)