9
是否可以在訪問中的sql窗口中註釋代碼?ms-access:如何評論sql代碼?
是否可以在訪問中的sql窗口中註釋代碼?ms-access:如何評論sql代碼?
不可以。在MS-Access(JET-SQL)中不能有任何無關文本。
您可以忽略一些約束,例如。
Where
name = "joe"
OR
(state = "VA" AND 1=0)
但是,技術是隱藏現有SQL
由於MathewMartin說相當有限的方式,你不能。我用以下解決方法:
SELECT * FROM x
WHERE "-- your comment. This plain string is always true";
或
SELECT * FROM x
WHERE y = 'something'
AND " -- z = 'something else' ";
在Office 2010中,你不能只是雙重檢查。使用 - 就像在TSQL中會引發「語法錯誤(缺少運算符)...」 – MatthewMartin 2010-06-30 19:00:43