Answers for "check command sql"

SQL
1

sql constraint check value in list

CREATE TABLE test(
    _id BIGINT PRIMARY KEY NOT NULL,
    decision NVARCHAR(5),
    CHECK (decision in ('yes','no','maybe'))
);
Posted by: Guest on May-24-2020
1

sql query checker

CREATE TABLE employee

   ( employee_id VARCHAR(20),

    Name VARCHAR (20),

    Address VARCHAR (20),

    Mobile_no  SMALLINT);
Posted by: Guest on May-29-2021

Code answers related to "check command sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language