Senior
SQL task 1: Add a new office with number 205 and 50 seats
sobes.tech AI
Answer from AI
To add a new office with number 205 and 50 seats, you need to execute an SQL INSERT query into the offices table. Suppose the table is called offices and has fields office_number and seats.
Example query:
INSERT INTO offices (office_number, seats) VALUES (205, 50);
If the table structure differs, you should substitute the appropriate column names. It is important to ensure that the office number is unique if there is a constraint on it.