Computer Science, asked by madhavinrsh, 4 days ago

this is database schema
driver id , name license number , expiry date, mobile number using this create SQL statement for creating above table with neccesssary primary keys and foreign keys

Answers

Answered by ShubhamUltraProMax
0

Answer:

answer in explanation

Explanation:

CREATE TABLE Driver_ID( Name varchar NOT NULL, License_Number int(12) PRIMARY KEY, Expiry_date date NOT NULL, Mobile_Number int(10) FOREIGN KEY) ;

Similar questions