Is there a way to create a table in sqlite3 that has a datetime column that defaults to \'now\'?
The following statement returns a syntax error:
crea
you can use the following query for using current date value in your table
create table tablename (date_field_name Created_on default CURRENT_DATE);