Puoi convertirlo in :
SELECT ENAME, MAX(SAL), STORES.CITY FROM EMPLOYEES
INNER JOIN STORES
ON EMPLOYEES.STORE_ID = STORES.STORE_ID
GROUP BY ENAME, STORES.CITY
o
SELECT EMPLOYEES.STORE_ID, MAX(SAL), STORES.CITY FROM EMPLOYEES
INNER JOIN STORES
ON EMPLOYEES.STORE_ID = STORES.STORE_ID
GROUP BY EMPLOYEES.STORE_ID, STORES.CITY
poiché nel tuo caso l'istruzione SQL Select ha colonne non raggruppate e non aggregate nell'elenco di selezione, si tratta di una violazione delle regole. E per il tuo target potresti preferire il seguente :
SELECT ENAME, MAX(SAL), STORES.STORE_ID, STORES.CITY FROM EMPLOYEES
INNER JOIN STORES
ON EMPLOYEES.STORE_ID = STORES.STORE_ID
GROUP BY ENAME, STORES.STORE_ID, STORES.CITY