write a query to create a table with the following structure
Answers
Answered by
1
Answer:
Query to create a table
create table <table_name>
(column1 datatype( constraints),
column2 datatype(constraints), ............);
hope this will help you
Similar questions