Skip to content

Commit

Permalink
Merge pull request #17 from ClickHouse/ch-developer-lab-answer-fix
Browse files Browse the repository at this point in the history
Ch developer lab answer fix
  • Loading branch information
pmusa authored Aug 7, 2024
2 parents 7eb853e + b3f05ab commit 6ff2e21
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion developer/10_deleting_and_updating_data/lab_10.2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ INSERT INTO messages (id,sign) VALUES
SELECT * FROM messages;

--Step 7:
SELECT * FROM messages FINAL;
SELECT * FROM messages FINAL;

--Step 8:
INSERT INTO messages VALUES
(1, '2024-07-03', 'Adios', 1);

SELECT * FROM messages FINAL;

0 comments on commit 6ff2e21

Please sign in to comment.