1.

What Is Query Of Queries? What Is The Use Of Query Of Queries?

Answer»

COLDFUSION has a beautiful feature called Query of Queries which is MAINLY used for improving PERFORMANCE of the application. Query of Queries is the RESULT of an existing DATABASE query result.This will be done by using coldfusion “cfquery” tag and need to
specify dbtype = ‘query’.

Eg:
select *
from NameOfAnotherQuery
where ColumnName = 'SomeValue'

Coldfusion has a beautiful feature called Query of Queries which is mainly used for improving performance of the application. Query of Queries is the result of an existing database query result.This will be done by using coldfusion “cfquery” tag and need to
specify dbtype = ‘query’.

Eg:
select *
from NameOfAnotherQuery
where ColumnName = 'SomeValue'



Discussion

No Comment Found