Write SQL query to create a table name "TAXPAYER
Attachments:
Answers
Answered by
3
Answer:
SQL query to create table TAXPAYER is as follows:
create table TAXPAYER ( "Clientid" integer primary key, "Clientname" varchar (20) not null, "Firmname" varchar (20), "Category" char, "Session" varchar (10), "Amount" decimal (10,2));
I have checked by executing the command on open office database.
Hope you got that.
Thank You.
Similar questions