Computer Science, asked by s1044sachinkumar2843, 2 months ago

a) Using SQL statements in MySQL, create the Database Name: Univ also write a query to open the database Univ.​

Answers

Answered by Anonymous
1

Answer:

Explanation:

CREATE TABLE ‘schemaname’.’tablename’(

 column_1 datatype (length) NOT NULL | DEFAULT | UNIQUE,  

 ...,

 Primary key,  

Foreign key  

) ENGINE=storage_engine;

Similar questions