I created a default value for my database:
CREATE DEFAULT [dbo].[zero] as 0
However, I can not create a table using this default value. How do I set this value at the time of creating a table? For example:
CREATE TABLE TESTE ( num int DEFAULT zero)