此SQL语句不是查询

时间:2016-09-12 12:12:14

标签: sql-server ms-access sql-server-2008-r2

我有一个SQL Server 2008 R2数据库,我正在尝试编写SQL查询以从Access .mdb源更新表。但是,我一直收到错误

  

此SQL语句不是查询

我不太确定我做错了什么。

基本上我需要做的是在表中搜索数据,找到新的条目,然后将它们导入SQL Server数据库。

这是我到目前为止所提出的:

SELECT 
    [EntryDate], 
    [Scan Group], [Scanned Computers], 
    [Unreachable Computers], 
    [Computers with -redacted- matches], 
    [Critical Matches (1000+)], 
    [High Matches (101-999)],
    [Low Matches (1-20)], 
    [Medium Matches (21-100)]
FROM
    dbo.[Table] (hiding the table name for security purposes)
WHERE 
    EntryDate = [specified date];

有人可以帮助我知道我哪里出错了吗?

0 个答案:

没有答案