Answers for "sqlite unique multiple columns"

SQL
0

sqlite unique multiple columns

create table projects (
    _id integer primary key autoincrement,
    project_type text not null,
    name text not null,
    description text,
    last_updated datetime default current_timestamp,
    date_created datetime default current_timestamp,
    unique (project_type, name)
);
Posted by: Guest on October-25-2021

Code answers related to "sqlite unique multiple columns"

Code answers related to "SQL"

Browse Popular Code Answers by Language