Files
freeCodeCamp/curriculum/challenges/japanese/23-python-for-everybody/python-for-everybody/relational-databases-relationship-building.md
2024-01-24 19:52:36 +01:00

895 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e7b9f180b6c005b0e76f08e リレーショナルデータベース: リレーションシップの構築 11 CSbqczsHVnc
aid bvid cid
376996473 BV1jo4y1S7VY 377532966
relational-databases-relationship-building

--question--

--text--

What does the INSERT command do in SQL?

--answers--

新しい行を定義する。そのために、挿入したいフィールドを列挙し、その後に、新しい行に配置したい値を記述する。


新しい列を定義する。そのために、挿入したい行を列挙し、その後に、新しい列に配置したい値を記述する。


新しいテーブルを定義する。そのために、挿入したい行とフィールドを列挙し、その後に、テーブルに配置したい値を記述する。

--video-solution--

1