Last answered:

01 Aug 2024

Posted on:

01 Mar 2024

0

Assignment Solution-Using Constraint

CREATE TABLE customers

( customer_id INT,

first_name VARCHAR(255) NOT NULL,

last_name VARCHAR(255) NOT NULL,

email_address VARCHAR(255) NOT NULL,

number_of_complaints INT

);

2 answers ( 0 marked as helpful)
Instructor
Posted on:

08 Mar 2024

0

Hi Tamizhazhagan!
Thanks for reaching out.


Thanks for sharing this piece of information with the Community!


Best,
Tsvetelin

Posted on:

01 Aug 2024

0

create table Customers
(
    customer_id int not null primary key auto_increment,
    first_name varchar(255) not null,
    last_name varchar(255) not null,
    email_address varchar(255) not null,
    number_of_complaints int
    
);

Submit an answer