Computer Science, asked by baijayantakumardas, 3 months ago

1. Create a table with the following fields
with proper data types
set the appropriate Primary key

Passport Number
Name
Age
Address
goare Date
Valid upto
Fees Armount​

Answers

Answered by allysia
0

Answer:

Here you go,

use database;

create table flight (passport_number int primary key, name varchar (20), age int, address varchar (30), board_date date, valid_upto date, fees_amount int);

Similar questions