由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - error of sql query in MS Access database (转载)
相关主题
Error of SQL query on IBM netezza SQL database from Aginity (转载)问一道HIVE题 关于Efficiency
change year format in Access by SQL query (转载)Smart Parser/Compiler Development
Querying JSON in PostgresQuestion about a C++ compilation error on Visual Studio 2005
typedef and operator new problemPython里面为什么range(0,5)不用0:5来表示?
多线程优化求助! (转载)int F::*x = &F::x是什么意思?
怎么样实现fuzzy join实现一个parser可以解析给定的几种sql语句,怎么做? (转载)
SQL add some columns into a table from another table (转载请问一个问题1
sqlite3 db.close() called before db.serialized() finishessystem design question (转载)
相关话题的讨论汇总
话题: select话题: access话题: ms话题: query话题: where
进入Programming版参与讨论
1 (共1页)
l******9
发帖数: 579
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: error of sql query in MS Access database
发信站: BBS 未名空间站 (Wed Oct 15 17:38:15 2014, 美东)
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.
n*w
发帖数: 3393
2
没必要套这么多层。
SELECT *
FROM
(
SELECT *
FROM table1
where not exists
(
SELECT *
FROM table2
where table2.id = table1.id
)
) as t1, table3
where table3.id = t1.id
1 (共1页)
进入Programming版参与讨论
相关主题
system design question (转载)多线程优化求助! (转载)
public and protected member in private inherit怎么样实现fuzzy join
java error 新手问题, 请帮忙看看SQL add some columns into a table from another table (转载
java error 新手问题, 请帮忙看看sqlite3 db.close() called before db.serialized() finishes
Error of SQL query on IBM netezza SQL database from Aginity (转载)问一道HIVE题 关于Efficiency
change year format in Access by SQL query (转载)Smart Parser/Compiler Development
Querying JSON in PostgresQuestion about a C++ compilation error on Visual Studio 2005
typedef and operator new problemPython里面为什么range(0,5)不用0:5来表示?
相关话题的讨论汇总
话题: select话题: access话题: ms话题: query话题: where