Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
how to insert b'day into database column which is of varchar data type .
Can be done in two ways ... select 'b''day' OR set quoted_identifier off select "b'day" set quoted_identifier on
select 'b''day'
set quoted_identifier off select "b'day" set quoted_identifier on
Regards KP