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

Query

Uploaded by

api-3697508
Copyright
© Attribution Non-Commercial (BY-NC)
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)
50 views1 page

Query

Uploaded by

api-3697508
Copyright
© Attribution Non-Commercial (BY-NC)
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 table stock(pcode number not null, pname varchar2(20) not null, totalstock

number not null);


select * from stock;

select * from stock;

create table sales(customer_id number not null, date1 varchar2(10)not null,pcode


number not null, pname varchar2(20) not null,
nitem number not null ,uprice number not null,tprice number not null);

select * from sales;

You might also like