database - Adding prefix to value in sql row values -
i have 10000 rows in sql table, , need add prefix before each value of user column.
example: have value names john, smith, , on , need set qa-john, qa-smith , on.
is there sql function can automatically or can done 1 one?
thanks
if haven't misunderstood, you're asking..
update table set name="qa-"+name
Comments
Post a Comment