#to add one more unique values in the coulmn (likewsie PhoneNumber)
create table contact(
    name varchar(50),
    # named constraint
    mob varchar(50) UNIQUE, constraint  mobno_less_than_10digits check (length(mob)>=10)     #check (length(mob)>=10) --check constraint
    
);
desc contact;
Insert into contact values ('sid','7972384820');
Insert into contact values ('sid','79384820');
select * from contact;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: