I'm new to ColdFusion and I want to know if it is possible to use the
cfprocresult value from a previous cfstoredproc in a cfquery or
cfselect or whatever.

For example:
<cfstoredproc datasource="a" procedure="b">
[...]
<cfprocresult name="myresult">
</cfstoredproc>

<cfquery [...]>
select * from myresult order by field1
</cfquery>

If it is possible, what would be the parameters to use in cfquery,
cfselect or whatever.
Thanks in advance.