Details
Description
for example,
Warning 1052 Column 'kundentyp' in group statement is ambiguous
|
In German it becomes
Warning 1052 Unbekanntes Tabellenfeld 'kundentyp' in group statement
|
and in, for example, Greek, it's
Warning 1052 Αγνωστο πεδίο 'kundentyp' σε 'group statement'
|
This shows, once again, that one cannot use a message in English as an error message parameter. Column names or SQL keywords are fine, though. The above can be written as
Warning 1052 Column 'kundentyp' in GROUP BY is ambiguous
|