Answers for "how to insert with where in sql"

SQL
0

Insert command in sql

insert into cd.facilities values (9, 'Spa', 20, 30, 100000, 800);
Posted by: Guest on November-22-2021
-1

insert command in sql

insert into cd.facilities
    (facid, name, membercost, guestcost, initialoutlay, monthlymaintenance)
    values
        (9, 'Spa', 20, 30, 100000, 800),
        (10, 'Squash Court 2', 3.5, 17.5, 5000, 80);
Posted by: Guest on November-22-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language