freeCodeCamp/curriculum/challenges/chinese-traditional/07-scientific-computing-wit.../python-for-everybody/make-a-relational-database.md

684 B

id title challengeType videoId dashedName
5e7b9f170b6c005b0e76f08b 建立關係數據庫 11 MQ5z4bdF92U make-a-relational-database

--question--

--text--

您將使用什麼 SQL 命令來檢索具有電子郵件地址 quincy@freecodecamp.org 的所有用戶?

--answers--

SELECT Users WHERE email="quincy@freecodecamp.org"

SELECT Users WHERE email IS "quincy@freecodecamp.org"

SELECT ALL Users WHERE email="quincy@freecodecamp.org"

SELECT * FROM Users WHERE email IS "quincy@freecodecamp.org"

SELECT * FROM Users WHERE email="quincy@freecodecamp.org"

--video-solution--

5