How do I set a variable to the result of select query without using a stored procedure?
|
|
|
|
|
|
|
What do you mean exactly? Do you want to reuse the result of your query for an other query? In that case, why don't you combine both queries, by making the second query search inside the results of the first one (SELECT xxx in (SELECT yyy...) |
||
|
|
|
|
You could use:
|
||
|
|
|
|
I want to do something like: OOdate DATETIME SET OOdate = Select OO.Date from OLAP.OutageHours as OO where OO.OutageID = 1 Then i want to use OOdate in this query: Select COUNT(FF.HALID) from Outages.FaultsInOutages as OFIO inner join Faults.Faults as FF ON FF.HALID = OFIO.HALID WHERE CONVERT(VARCHAR(10),OO.Date,126) = CONVERT(VARCHAR(10),FF.FaultDate,126)) AND OFIO.OutageID = 1 |
||
|
|
|
|
You can use something like
or
For this to work the SELECT must return a single column and a single result. Edit: Have you tried something like this?
|
|||
|
|
|
|
Thanks JPrescottSanders that's what I was looking for |
||
|
|
|
|
Thanks for the walk through rslite much appreciated |
||
|
|
|
|
You could also just put the first SELECT in a subquery. Since most optimizers will fold it into a constant anyway, there should not be a performance hit on this. Incidentally, since you are using a predicate like this:
that predicate expression cannot be optimized properly or use indexes on the columns reference by the CONVERT() function. Here is one way to make the original query somewhat better:
This version could leverage in index that involved FaultDate, and achieves the same goal. Here it is, rewritten to use a subquery to avoid the variable declaration and subsequent SELECT.
Note that this approach has the same index usage issue as the original, because of the use of CONVERT() on FF.FaultDate. This could be remedied by adding the subquery twice, but you would be better served with the variable approach in this case. This last version is only for demonstration. Regards. |
||
|
|
