Fehlermeldung

Hallo ich hätte eine Software installiert auf dem Server, doch nach der anmeldung kommt immer page not found 404

bzw im phpmyadmin ist folgende Fehlermeldung zu sehen:

SQL Fehler:

ERROR: column pl.transaction does not exist
LINE 1: SELECT pn.nspname, pc.relname AS tablename, pl.transaction, …
^
In der Anweisung:

SELECT pn.nspname, pc.relname AS tablename, pl.transaction, pl.pid, pl.mode, pl.granted
FROM pg_catalog.pg_locks pl, pg_catalog.pg_class pc, pg_catalog.pg_namespace pn
WHERE pl.relation = pc.oid AND pc.relnamespace=pn.oid AND pn.nspname NOT LIKE 'pg\_%'
ORDER BY nspname,tablename

was mache ich falsch?

Die reihenfolge deiner AS ist falsch. Du hast nur ein AS drin, brauchst aber mehere Alisases.
Hier ein Beispiel
SELECT o.OrderID, o.OrderDate, c.CustomerName
FROM Customers AS c, Orders AS o
WHERE c.CustomerName=“Around the Horn” AND c.CustomerID=o.CustomerID;

klappts nach dem umbau?