Hi, i'm appending a union query to another table, one part of the union query reports on a date field so will have a date value, the other part won't does not report on this field sop the value will always be null.
The problem i've got is with the part of the union query with no dates. I've used this line of SQL
to generate a null date value but it's causing the row to be thrown out of the source table as it is not coming through as a date.
Does anybody know how i can create a null date value using SQL?
The problem i've got is with the part of the union query with no dates. I've used this line of SQL
Code:
,"" AS DateAllocated,
Does anybody know how i can create a null date value using SQL?