0% found this document useful (0 votes)
12 views1 page

Dms

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

Dms

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create database shop;

create table customer(id int, name varchar(10), city varchar(10),age int ,salary
int);
insert into customer values(1,'ravi','br',12,100);

insert into customer values(2,'golu','br',21,1000);


select *from customer where age=21;

You might also like