dndaughtery
Programmer
I need to write a query to insert from one table to another but I want to avoid inserting empty rows. This is what I'm trying:
Insert into TableA
Select * from TableB where Fieldname Not Null;
But this is incorrect. How can I check for null value?
Insert into TableA
Select * from TableB where Fieldname Not Null;
But this is incorrect. How can I check for null value?