mysql 嵌套查询

selecttrain_no,a.sequ_nofrom,b.sequ_notofrom(select*fromaawherest_name="xxx")asa,(sel... select
train_no,a.sequ_no from,b.sequ_no to
from
(select * from aa where st_name= "xxx" ) as a ,
(select * from aa where st_name= "xx") as b
where
a.train_no =b.train_no and a.sequ_no<b.sequ_no;
当我这样写时,报错,请问是什么原因呢? 错误位置始终在 第二行到 第四行 这里
展开
 我来答
百度网友0f37e23c0
推荐于2018-04-30 · TA获得超过1543个赞
知道大有可为答主
回答量:1070
采纳率:50%
帮助的人:1294万
展开全部
你的sql语句中 的 from 和 to 与sql保留关键词 有冲突。

select
a.train_no, a.sequ_no t_from , b.sequ_no t_to
from
(select * from aa where st_name= "xxx" ) as a ,
(select * from aa where st_name= "xx") as b
where
a.train_no = b.train_no and a.sequ_no<b.sequ_no;

或者

select
a.train_no, a.sequ_no as `from` , b.sequ_no as `to`
from
(select * from aa where st_name= "xxx" ) a inner join
(select * from aa where st_name= "xx") b on a.train_no =b.train_no
where a.sequ_no<b.sequ_no;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式