mediumcodewarssql
RegisterForTheParty
CodeWars - Register for the Party (SQL for Beginners #3)
Insert yourself into the participants table (name, age, attending).
Only attendees aged 21+ are allowed since alcohol is served.
Çözüm (sql)
solution.sql
INSERT INTO participants (name, age, attending) VALUES ('Mami', 25, true);
SELECT * FROM participants;