I came across a question:
How did you enter the default value for the DateRaised column when you inserted a row?
- did not specify a value
- specifyed a null value
- used a defualt key word
and the answer was 1.
How could I insert the value in this way? Could the answer change or what?
INSERT INTO [DirectMarketing.Opportunity]
(OpportunityID,ProspectID,DateRaised,Likelihood,Rating,EstimatedClosingDate,EstimatedRevenue)
VALUES (1,1,DEFAULT,8,'A','12/12/2020',123000.00)
THANKS A LOT!!!!