ms-access: displaying column as "something else"
Posted
by every_answer_gets_a_point
on Stack Overflow
See other posts from Stack Overflow
or by every_answer_gets_a_point
Published on 2010-05-14T19:25:17Z
Indexed on
2010/05/14
19:34 UTC
Read the original article
Hit count: 211
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?
© Stack Overflow or respective owner