-- Lecture 7: SQL Constraints and Triggers -- Example: Bank accounts and transfers -- Inserting data INSERT INTO Accounts VALUES ('Alice',30000); INSERT INTO Accounts VALUES ('Bob',20000); INSERT INTO Accounts VALUES ('Carl',1000); INSERT INTO Accounts VALUES ('David',50000);