10
sql
-- View all client orders
SELECT * FROM client_orders;
-- Insert a new client order
INSERT INTO client_orders (order_id, client_id, order_total, placed_at)
VALUES (6, 105, 88.25, '2024-07-20');
-- Insert another client order
INSERT INTO client_orders (order_id, client_id, order_total, placed_at)
VALUES (7, 106, 150.00, '2024-08-02');
-- View all client orders again to confirm inserts
SELECT * FROM client_orders;
Want to learn more?
Join CodeFriends Plus membership or enroll in a course to start your journey.