Answers for "set a default value for a column in sqlite"

SQL
0

set a default value for a column in sqlite

CREATE TABLE Products
( 
    ProductId INTEGER PRIMARY KEY, 
    ProductName,
    Price DEFAULT 0.00
);
Posted by: Guest on July-25-2021

Code answers related to "set a default value for a column in sqlite"

Code answers related to "SQL"

Browse Popular Code Answers by Language