how to replace double quotes by single quotes in sql server
Answers were Sorted based on User's Feedback
Answer / soorai ganesh
Try This.....
select replace('"ganesh"','"','''')
Output : 'ganesh'
Is This Answer Correct ? | 21 Yes | 1 No |
Explain view in sql server?
Different Types of Functions ?
Explain the different types of backups available in sql server? : sql server database administration
I have all the primary data files, secondary data files as well as logs. Now, tell me can I still restore the database without having a full backup? : sql server database administration
CREATE a table from another table
What is the command to change the recovery model?
What is the use of custom fields in report?
I have a table EMP in which the values will be like this EmpId Ename Sal DeptId 11 Ram 10000 10 11 Ram 10000 10 22 Raj 20000 20 22 Raj 20000 20 33 Anil 15000 30 33 Anil 15000 30 I want to delete only duplicate Rows. After Delete I want the output like this EmpId Ename Sal DeptId 11 Ram 10000 10 22 Raj 20000 20 33 Anil 15000 30
How to list all user defined functions in the current database?
You want to implement the one-to-many relationship while designing tables. How would you do it?
Explain transaction server explicit transaction?
wat is mean by trigger?.......normally wat use......when trigger used in sql........... plz cleary say with example.......