SQL コマンド
INSERT ステートメント
新しいレコードを作成するには、INSERT ステートメントを使用します。
このページは役に立ちましたか?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
新しいレコードを作成するには、INSERT ステートメントを使用します。
INSERT INTO <table_name>
( <column_reference> [ , ... ] )
VALUES
( { <expression> | NULL } [ , ... ] )
<expression> ::=
| @ <parameter>
| ?
| <literal>
このページは役に立ちましたか?