Create DataBase Customers;
Use Customers;
Create Table Customer(customer_Id int, First_Name Varchar(15));
Insert into customer(customer_Id,First_Name)Values(
(1,’John’)
);
Error :-
Msg 102, Level 15, State 1, Line 8
Incorrect syntax near ‘,’.
Attached Image For Refernce can Somebody Help about this?
SQL
New contributor
Sankershan Patil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.