Project 17: Search Log Insert
SQL Architect
Builds on these lessons
Query Task
Objective
INSERT, UPDATE, and DELETE are together called DML — Data Manipulation Language, the part of SQL that changes what's stored (as opposed to DDL, which changes the table structure itself).
You're given a search_log table with columns id (auto-generated), query, and searched_at.
Task: log a new search for 'sql tutorials' on '2026-08-21'.
query.sql
INSERT INTO search_log (query, searched_at) VALUES ('sql tutorials', '2026-08-21');
* Hint: Correct characters turn green, incorrect ones turn red.
Query Results
🗄️
Execute your query to see results