April 2026
Intermediate
1009 pages
34h 15m
English
The SQL command for entering data into the database is INSERT INTO <table name>. You then enter a list of the columns in which you want to enter something, the keyword VALUES, and then the values. String values are entered in single quotation marks (although there are different formats for date values in particular)!
INSERT INTO entry (name, email, date, entry) VALUES ('Christian', 'christian@xy.zzz', '2025-01-01', 'Welcome to the guestbook! The guestbook is open. ')INSERT INTO entry (name, email, date, entry) VALUES ('Tobias', 'tobias@xy.zzz', '2025-01-02', 'This isn’t exactly the place to be ... ')INSERT INTO entry (name, email, date, entry) VALUES ('Christian', 'christian@xy.zzz', '2025-01-03', 'There is some truth ...
Read now
Unlock full access