Im trying to insert data into a table which has an attribute that can be Null. However, im not sure how to accomplish this with my SQL statements.
INSERT INTO [dbo].[INVOICE]
([INV_ID]
,[EMP_ID]
,[WAR_ID]
,[REP_ID]
,[FIN_ID]
,[INV_DATE]
,[INV_PRICE])
VALUES
(5655,8,1**,,**3,'7/5/2000',75880),
(9749,1,1**,,**1,'11/26/2002',58881),
(9909,3,1**,187,**3,'12/27/2012',64859);
You could use
NULLto represent null