Vous devez attribuer un alias à la sous-requête.
SELECT name FROM (SELECT name FROM agentinformation) a
ou pour être plus explicite
SELECT a.name FROM (SELECT name FROM agentinformation) a
Vous devez attribuer un alias à la sous-requête.
SELECT name FROM (SELECT name FROM agentinformation) a
ou pour être plus explicite
SELECT a.name FROM (SELECT name FROM agentinformation) a