SQLでこんなふうになっているときに出るエラー。
insert into t_examples
(company_id
, company_name
, created_at
) values (1, , '2018-12-05');
nullをちゃんと指定すれば直る。
insert into t_examples
(company_id
, company_name
, created_at
) values (1, null , '2018-12-05');
Go to list of users who liked
More than 5 years have passed since last update.
SQLでこんなふうになっているときに出るエラー。
insert into t_examples
(company_id
, company_name
, created_at
) values (1, , '2018-12-05');
nullをちゃんと指定すれば直る。
insert into t_examples
(company_id
, company_name
, created_at
) values (1, null , '2018-12-05');
Register as a new user and use Qiita more conveniently
Go to list of users who liked