Insert Records into Guest table in SQL

Question:

Insert Records into Guest table

Insert the following records into “Guest” table based on schema given below

GUESTIDNAMEADDRESSCOUNTRYEMAILPHONE
1234RAJ GUPTA116 LAKE ROAD O
OOTACAMUND
INDIA[email protected]919090909090
1235JACK MARTINNO:5ST ANTONYS CHRUCH CHENNAIINDIA[email protected]917867867834
1236MARY GREY14/2 EAST GHAT ROAD KODAIKANALINDIA[email protected]911234565432
{“type”:”inserter”,”blocks”:[{“clientId”:”4fc41852-6286-40c0-a0b0-45788352e328″,”name”:”core/image”,”isValid”:true,”attributes”:{“alt”:””},”innerBlocks”:[]}]}
Insert Records into Guest table in SQL

CODE:

insert into Guest values(1234, 'RAJ GUPTA', '116 LAKE ROAD OOTACAMUND', 'INDIA', '[email protected]', 919090909090);
insert into Guest values(1235, 'JACK MARTIN', 'NO:5ST ANTONYS CHRUCH CHENNAI', 'INDIA', '[email protected]', 917867867834);
insert into Guest values(1236, 'MARY GREY', '14/2 EAST GHAT ROAD KODAIKANAL', 'INDIA', '[email protected]', 911234565432);

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

Sharing Is Caring