I got list of the date that have double qoute.
Item_Descriptio n Table"BACARDI GOLD 1.0L"
"DUNHILL RED KSF"
"PASSPORT 0.75L"
"MILD 7 CHAR FILTER BOX"
"DEWARS WHI 12YRS 1.0L"
I wana write query that read if item description have double qoute and replaced with nothing and display the string without the double qoute..How to write the query in SQL?
SOMEONE HELP ME!!
Item_Descriptio n Table"BACARDI GOLD 1.0L"
"DUNHILL RED KSF"
"PASSPORT 0.75L"
"MILD 7 CHAR FILTER BOX"
"DEWARS WHI 12YRS 1.0L"
I wana write query that read if item description have double qoute and replaced with nothing and display the string without the double qoute..How to write the query in SQL?
Code:
update * from dbo.MMM_Product_Item set Description=' '
Comment