--DEFAULT IN SQL server
--How to use the default keyword in SQL?--Default value in the SQL server
--Enter the default value in the SQL table
------------------------------------------------------
--Default keyword is used to insert some specific values.
--If you are not inserting anything into the specific column, then it will take the default value--It is very easy; all you need to do is just look at the example to clear your concept
--Create a table with the default value
CREATE TABLE EMP
([ID] [int] IDENTITY(1,1) NOT NULL,[EMPNAME] [varchar](10) NULL,
[CREATEDON] [datetime] NOT NULL
) ON [PRIMARY]

Join the conversation! Your thoughts help the community grow.