I am trying to use
insert into tblexport (f1...f10)
Select f1..f10 from qryname
Where condition
This works fine as long as each field on the select has a value. How do I insert a null value if the field is empty? The table tblexport has allow null fields set to yes.
insert into tblexport (f1...f10)
Select f1..f10 from qryname
Where condition
This works fine as long as each field on the select has a value. How do I insert a null value if the field is empty? The table tblexport has allow null fields set to yes.