Is it possible to implement a DEFAULT literal-value in SQLite, which would 
allow an individual column to be populated with a DEFAULT, similar to how a 
NULL or CURRENT_TIMESTAMP is currently used? Thanks.

for example, from http://www.postgresql.org/docs/9.4/static/sql-insert.html

[ WITH [ RECURSIVE ] with_query [, ...] ]
INSERT INTO table_name [ ( column_name [, ...] ) ]
    { DEFAULT VALUES | VALUES ( { expression | DEFAULT } [, ...] ) [, ...] | 
query }
    [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ]


   - DEFAULT
      -  The corresponding column will be filled with its default value. 

Reply via email to