3个回答
展开全部
在sql语句中使用嵌套查询就可以了吧?
类似这样:select * from user_table where userId = (select userId from account_table where accountId = '001001');
如果子查询有多条结果的话,那么可以用in
select * from user_table where userId in (select userId from account_table where accountId = '001001');
不知是不是你想要的结果。
类似这样:select * from user_table where userId = (select userId from account_table where accountId = '001001');
如果子查询有多条结果的话,那么可以用in
select * from user_table where userId in (select userId from account_table where accountId = '001001');
不知是不是你想要的结果。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是嵌套,应该是把查询结果当表来进行查询,如下语句
select * from (select * from user_table where user_dept='admin') where user_name='me'
select * from (select * from user_table where user_dept='admin') where user_name='me'
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用类调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询