A
Andre
Access 2003
I'm wondering if there is a way to have Access type queries more TSQL like.
For example, the query below is from Access:
SELECT Product.productID, Product.productName
FROM Product
WHERE (((Product.productName) ALike "b%"));
If I were writing this query in SQL's Query Analyzer, it would be like this:
SELECT productID, productName
FROM Product
WHERE productName Like 'b%'
Is it possible to have Access interpret queries so they are more TSQL-like?
I've already turned on SQL Server Compatible Syntax (Ansi 92), but I'd
personally never write these queries using all these parenthesis. Nor have
I ever heard of "ALike".
Thanks, Andre
I'm wondering if there is a way to have Access type queries more TSQL like.
For example, the query below is from Access:
SELECT Product.productID, Product.productName
FROM Product
WHERE (((Product.productName) ALike "b%"));
If I were writing this query in SQL's Query Analyzer, it would be like this:
SELECT productID, productName
FROM Product
WHERE productName Like 'b%'
Is it possible to have Access interpret queries so they are more TSQL-like?
I've already turned on SQL Server Compatible Syntax (Ansi 92), but I'd
personally never write these queries using all these parenthesis. Nor have
I ever heard of "ALike".
Thanks, Andre