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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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);