Answers for "sqlite database in how to add default value"

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 "sqlite database in how to add default value"

Code answers related to "SQL"

Browse Popular Code Answers by Language