SQL/insert into

解説 テーブルにデータを追加
SQL
insert into テーブル名(id, name, age, height, created)
	values(1, "namae", 34, 175, now()),
	(2, "namae", 42, 150);