Computer Science, asked by Harinijosephvijay5, 4 months ago

Write a SQL query to insert the record ('TPDL', 'AirIndia', 'Trichy', 'Delhi') in the table named 'Flight_Details'

Answers

Answered by SAIFSYED09
0

Answer:

TO INSERT ROW :-

Insert into table name values (value1, value2, value3,...);

Explanation:

Your answer

Insert into Flight_Details value ('TPDL', 'AirIndia', 'Trichy', 'Delhi');

Similar questions