Creating empty queriesYou may need to
create "empty" queries in existing applications for filling in bits of functionality
that does not supply.Creating empty queries
Empty queries of the right size and shape can be formed off a single values
table and a "WHERE FALSE" condition:
SELECT *
FROM (VALUES ('',1,"TRUE")) AS ProcedureInfo(ProcedureName,NumParameters,
ProcedureValid)
WHERE 1=0