Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
You have referenced a field that exists in more than one table.
For example, if you use the TESTDATA database and issue the following command, the same error occurs because the cust_id field exists in both the customer and orders tables:
SELECT cust_id FROM customer,orders
To work around the non-uniqueness of field names, issue the following command:
SELECT customer.cust_id FROM customer,ordersFor more information, see SELECT - SQL.