Skip to content

Commit

Permalink
Add instructions.append.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffan153 committed Jun 10, 2024
1 parent 22b4fb2 commit 05320cf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions exercises/practice/etl/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# SQLite specific instructions

This exercise requires you set the `result` column of the `etl` table to the correct value based on the JSON object found in the `input` column. The keys in the result object must be sorted alphabetically.

## Table Schema

```sql
CREATE TABLE "etl" ("input" TEXT, "result" TEXT);
```
2 changes: 1 addition & 1 deletion exercises/practice/etl/etl.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-- Schema: CREATE TABLE "etl" ("input" TEXT, "result" TEXT);
-- Task: update the etl table and set the result based on the input field.
-- Task: update the etl table and set the result based on the input field. The keys in the result object must be sorted alphabetically.

0 comments on commit 05320cf

Please sign in to comment.