unce
Explain.
(a)write a query to create a table
within the following structure
(b)Consides the following cender
table and write the quary
((Tables Product
field - Data type
PID - Char (48
pname- varchai (26)
Description - varchar40)
Price Decimal))
Answers
Answered by
4
#Sql query
create table calender
(
PID char(48) [primary key],
pname varchar(26),
Description varchar(40),
price float(10)
);
ok query,
Similar questions