ColdFusion - Return data of queryExecute and not the entire query

96 Views Asked by At

So I'd like to return the value of a property of a table only, not the entire query using coldfusion and my local table. This is how I display it:

<h3 class="queue-type-label">#match.outcome.queueDescription.toString()#</h3>

Also, this is how I defined queueDescription:

outcome.queueDescription = queryExecute("select Description from Queues_de where ID='#match.queueId#'");

I get only the following result: enter image description here

But I'd really like to get just the "Description" value... (Solo/Duo (Rangliste)) such stuff you know. Does any1 can help me?! :O

0

There are 0 best solutions below