Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi how can i add special character ( ' ) single qutashion to my sql select statement ?

What I have tried:

select ''' + name +''' from mytable
Posted
Updated 2-Oct-17 21:51pm
Comments
Atlapure Ambrish 3-Oct-17 3:49am    
Can elaborate more on what exactly your are trying to do??

1 solution

Try:
SQL
SELECT '''' + myColumnName + '''' FROM MyTable
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900