-
-
Notifications
You must be signed in to change notification settings - Fork 108
Closed
Description
Hopefully this is the right place for this bug. In phpMyAdmin I get an error when using a legitimate query. Using the "Country" table on the demo server as an example, putting the following query into the SQL box gives an error:
update Country x, City c
set x.Name=x.Name
where x.Code=c.CountryCode;
The first x gets underlined in red and it says "Unrecognized keyword (near x)". But the query is valid and submitting it runs just fine.
I don't get the error in a select query (e.g. select * from Country x, City c...
) and changing the x to another letter works fine (e.g. Country w, City c
).
williamdes