We will write a simple/normal syntax.
INSERT INTO my_tab (t_id, c_name, address) VALUES (142, 'K.K's Company', 'Delhi');
There are two way to solve this problem :-
Use backslash
Ex :- 'K.K\'s Company'
Use two time single quotes
Ex :- 'K.K"s Company
Example :-
Output :-
INSERT INTO my_tab (t_id, c_name, address) VALUES (142, 'K.K's Company', 'Delhi');
There are two way to solve this problem :-
Use backslash
Ex :- 'K.K\'s Company'
Use two time single quotes
Ex :- 'K.K"s Company
Example :-
Output :-
0 Comments:
Post a Comment