LoginSignup
0
1

More than 1 year has passed since last update.

【Mysql】INSERT文

Last updated at Posted at 2023-01-05

INSERT文

基本構文

INSERT INTO テーブル名 VALUES();

※テーブルの列名を省略したこのパターンは非推奨

複数構文

INSERT INTO テーブル名(列名1,列名2) VALUES(1,2);
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1