In sql database column, empty fields will be set to NULL unless we specify it using NOT NULL. What are the advantages of using one instead of the other? Thanks!
In sql database column, empty fields will be set to NULL unless we specify
Share
If you need to represent unknown data in a column, you make it nullable. If you will always have data in the column, it’s better to make it not nullable, as