I need to update some records by removing prefixes from a value in several hundred records.
current value is "UUU\joeuser"
need the value to be "joeuser"
How would I write the SQL query to update multiple records in the database so that the prefix is removed?
UPDATE Table
SET dUser = '%\%'
WHERE column_name = some_value
Dano
What's your major malfunction
current value is "UUU\joeuser"
need the value to be "joeuser"
How would I write the SQL query to update multiple records in the database so that the prefix is removed?
UPDATE Table
SET dUser = '%\%'
WHERE column_name = some_value
Dano
What's your major malfunction