Files
freeCodeCamp/curriculum/challenges/japanese/07-scientific-computing-with-python/python-for-everybody/make-a-relational-database.md

53 lines
833 B
Markdown
Raw Permalink Normal View History

---
id: 5e7b9f170b6c005b0e76f08b
title: リレーショナルデータベースを作成する
challengeType: 11
videoId: MQ5z4bdF92U
bilibiliIds:
aid: 249380678
bvid: BV1vv411E76L
cid: 377531786
dashedName: make-a-relational-database
---
# --question--
## --text--
メールアドレス `quincy@freecodecamp.org` を持つすべてのユーザーを取得するために使用する SQL コマンドはどれですか?
## --answers--
```sql
SELECT Users WHERE email="quincy@freecodecamp.org"
```
---
```sql
SELECT Users WHERE email IS "quincy@freecodecamp.org"
```
---
```sql
SELECT ALL Users WHERE email="quincy@freecodecamp.org"
```
---
```sql
SELECT * FROM Users WHERE email IS "quincy@freecodecamp.org"
```
---
```sql
SELECT * FROM Users WHERE email="quincy@freecodecamp.org"
```
## --video-solution--
5