Skip to content
Advertisement

Finding percentage on a sub-query with different where clauses

I am trying to find the percentage completed on a table with a sub-query. I can successfully get the value I need using the following, but I am concerned that I am unnecessarily using two queries to get there when one (or a join) would do:

Specifically, my concern is in the where clause. I am repeating the exact same query except for the where conditions. Could this be accomplished with a JOIN on the same table? Multiple joins are confusing me and SQL is one of my weakest skills. I feel like this query could be tightened up because I am going to have to repeat this in a much larger query.

EDIT

By using CASE I was able to configure the larger SQL query properly. I have never written a query this complex before, so forgive if it looks too complicated:

WHERE L.[JOBSITE_ID] = 1502

result set

Advertisement

Answer

You can do it by using CASE. In my opinion is better to use numeric(decimal) instead of float. float is an approximate datatype that can lead to wrong results. You can read more about this here.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement