tags:

views:

30

answers:

2

i have the following access sql statement:

SELECT *
FROM (SELECT [Occurrence Number], [Occurrence Date], [1 0 Preanalytical (Before Testing)], [Cup Type], NULL as '2 0 Analytical (Testing Phase)', [2 0 Area], NULL,NULL FROM [Lab Occurrence Form] 
WHERE NOT ([1 0 Preanalytical (Before Testing)] IS NULL)

in this: NULL as '2 0 Analytical (Testing Phase)' when it displays the column it shows the single quote. if i remove the quote completely it gives me an error, if i use double quotes it shows me the double quotes in the resulting table

is it possible to not have it show any quotes?

+3  A: 

Use square brackets around column names and single quotes around strings. Try using square brackets instead:

NULL as [2 0 Analytical (Testing Phase)]
Mark Byers
+1  A: 

Use same syntax as you have

NULL as [2 0 Analytical (Testing Phase)]
volody