I need to know how to return a default row if no rows exist in a table. What would be the best way to do this? I'm only returning a single column from this particular table to get its value.
Edit: This would be SQL Server.
|
I need to know how to return a default row if no rows exist in a table. What would be the best way to do this? I'm only returning a single column from this particular table to get its value. Edit: This would be SQL Server. |
||||
|
|
In Oracle:
|
|||
|
|
|
This would be eliminate the select query from running twice and be better for performance:
|
|||
|
|
|
If your base query is expected to return only one row, then you could use this trick:
(Oracle code, not sure if NVL is the right function for SQL Server.) |
|||||
|
|
Do you want to return a full row? Does the default row need to have default values or can it be an empty row? Do you want the default row to have the same column structure as the table in question? Depending on your requirements, you might do something like this: 1) run the query and put results in a temp table (or table variable) 2) check to see if the temp table has results 3) if not, return an empty row by performing a select statement similar to this (in SQL Server):
Where columnA, columnB and columnC are your actual column names. |
|||
|
|
|
I figured it out, and it should also work for other systems too. It's a variation of WW's answer.
|
|||||||||||||
|
|
One table scan method using a left join from defaults to actuals:
Gives output:
|
|||
|
|
|
How about this:
Results Valid Rate Exists
Default Rate Used
Test DDL
|
|||
|
|