I need a query to:
Copy from database player, table item_proto_0, column locale_name
Paste to database player, table item_proto, column locale_name
But:
Just paste if has the same colum vnum
I’ve tried:
UPDATE item_proto.locale_name
SET item_proto_0.locale_name
WHERE item_proto_0.vnum=item_proto.vnum
This should work: