这是我想插入的sql,我收到错误。
const Company = require('.models/company');
这是我的ddl,我发现我的sql没有任何问题。
insert into instruments (symbol,exchange,FullName,IPOYear,Sector,Industry)
values('PIH','Nasdaq','1347 Property Insurance Holdings, Inc.','Finance','Property-Casualty Insurers','http://www.nasdaq.com/symbol/pih')
答案 0 :(得分:2)
Sector VARCHAR(20) NULL DEFAULT NULL
您将Sector
限制为20个字符并插入26个字符。
像这样Sector VARCHAR(30) NULL DEFAULT NULL
,它应该工作