当前位置:网站首页>About the problem of database: it can't be found after repeated inspection

About the problem of database: it can't be found after repeated inspection

2022-06-13 09:54:00 CSDN Q & A

This sql What's wrong with the old tips I can't see it

Problem related code
surface
create table Customer
(
CustomerID varchar(50) primary key,
CustomerCompanyName nvarchar(MAX),
CustomerName nvarchar(Max),
CustomerTitle nvarchar(MAX),
CustomerAddress nvarchar(MAX),
CustomerPostalcode nvarchar(MAX),
CustomerIphone nvarchar(MAX)
)
Insert statement
insert into Customer values('C001','Selead','Tom',' sales manager ','China','200131','11-111-1111')

The column name or number of values provided does not match the table definition

After repeated inspection, I can't find out

Solve this problem

原网站

版权声明
本文为[CSDN Q & A]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/164/202206061834455035.html