help in inserting into a table
Database
3
Posts
2
Posters
0
Views
1
Watching
-
hi i am having a table with two columns ,a and b in table x .both a and b are varchar and allows nulls. i want to insert b'day into a colun . can any one tell me the query ...... thanks Suman.
-
The same you have posed some time earlier. you could have modified the same. however, check this ....
select 'b''day'
orset quoted_identifier off select "b'day" set quoted_identifier on
Regards KP