I have a table xyz(name varchar(200)) i wanted to insert names such as 1.ramu's 2.shyam's when i try to insert using insert as it is throwing an error
quoted string not properly terminated
insert into xyz values('ramu's');
I have a table xyz(name varchar(200)) i wanted to insert names such as 1.ramu's 2.shyam's when i try to insert using insert as it is throwing an error
quoted string not properly terminated
insert into xyz values('ramu's');
The following will be helpful
INSERT INTO Xyz VALUES('Ram''s')
For one single quote, place two single quotes.