Write an SQL query to create a table with the following structure
Attachments:
Answers
Answered by
2
Answer:
#since you haven't specified any name to the table here imma be using typical table_name
Create table table_name (Flight char (4), Flight_name varchar (25), Course varchar (30), Destination varchar (30));
Explanation:
- CREATE TABLE command creates a table.
Similar questions