Insert Records Tickets in SQL

Question:

 

Insert Records – Tickets

Contains the run and evaluate script of Oracle DML. Can be used as example

Insert the below records into tickets table.

 
Ticket_idSchedule_idUser_idNo_seats
T1S512
T2S251
Insert Records Tickets in SQL

CODE:

insert into tickets values('T1', 'S5', NULL, 1, 2);
insert into tickets values('T2', 'S2', NULL, 5, 1);

rdbms programs | rdbms programs with output | rdbms programming languages | rdbms database program

Sharing Is Caring

Leave a Comment