Instruction select imbriquée dans SQL Server

Instruction select imbriquée dans SQL Server

Vous devez donner 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