Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a10ca2a

Browse files
committed
Add a question
1 parent 1d6f3cd commit a10ca2a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

‎README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -635,3 +635,28 @@ GROUP BY people.id;
635635
---
636636

637637
**[⬆ Back to Top](#sql-coding-challenges-for-beginners)**
638+
639+
## Register for the Party
640+
641+
You received an invitation to an amazing party. Now you need to write an insert statement to add yourself to the table of participants.
642+
643+
```
644+
participants
645+
------------
646+
name (string)
647+
age (integer)
648+
attending (boolean)
649+
```
650+
651+
<details><summary>Solution</summary>
652+
653+
```sql
654+
INSERT INTO participants (name, age, attending)
655+
VALUES ('John Doe', 35, true);
656+
```
657+
658+
</details>
659+
660+
---
661+
662+
**[⬆ Back to Top](#sql-coding-challenges-for-beginners)**

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /