S
stephiesunny
I'm trying to remove quotations from around text (vendor names) in my table.
Ie "Dell" to just say Dell.
This is my update, but it's asking for a parameter value and I dont' know
how else to structure my update query to just remove the quotes. Please help!!
UPDATE PaymentNet_Transactions
SET PaymentNet_Transactions.[Merchant] =
Replace(PaymentNet_Transactions.[Merchant],Chr(34),"")
WHERE PaymentNet_Transaction.[Merchant] LIKE "*""*";
Ie "Dell" to just say Dell.
This is my update, but it's asking for a parameter value and I dont' know
how else to structure my update query to just remove the quotes. Please help!!
UPDATE PaymentNet_Transactions
SET PaymentNet_Transactions.[Merchant] =
Replace(PaymentNet_Transactions.[Merchant],Chr(34),"")
WHERE PaymentNet_Transaction.[Merchant] LIKE "*""*";