set a default value for a column in sqlite

Solutions on MaxInterview for set a default value for a column in sqlite by the best coders in the world

showing results for - "set a default value for a column in sqlite"
Tania
21 Aug 2018
1CREATE TABLE Products
2( 
3    ProductId INTEGER PRIMARY KEY, 
4    ProductName,
5    Price DEFAULT 0.00
6);