Redian新闻
>
ire怎么配股啊?
avatar
ire怎么配股啊?# Stock
l*9
1
I need to do a sql query in MS Access 2012.
But I got error in MS Access:
SELECT *
FROM
(
SELECT *
FROM table1
where not exists
(
SELECT *
FROM table2
where table2.id = table1.id
) as t
) as t1, table3
where table3.id = t1.id
Syntax error: (missing operator) in query expression 'not exists ( ... ) as
t'
Any help would be appreciated.
avatar
S*r
2
手头上有300股,怎么买新股呢?有人会通知我么?
avatar
c*o
3
table1的where clause的column name没有
avatar
m*j
4
Co-ask
avatar
d*0
5
table1 和 table2 的schema必须一致, 如果用*, 两表结构可能(column)不一致,出错.
avatar
g*l
6
明天最大的悬念了
avatar
c*d
7
-- not exists的subquery不要alias
SELECT *
FROM
(
SELECT *
FROM table1
where not exists
(
SELECT *
FROM table2
where table2.id = table1.id
)
) as t1, table3
where table3.id = t1.id
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。