How can i put this into one query?
When I use AND for each one it shows nothing, example:
Subquery?
Code:
Select *
From tblVendorInfo
where RankComplete IS NOT NULL AND DivisionName = 'BP'
Order by RankComplete
Select *
From tblVendorInfo
where RankInProgress IS NOT NULL AND DivisionName = 'BP'
Order by RankInProgress
Select *
From tblVendorInfo
where RankProblem IS NOT NULL AND DivisionName = 'BP'
Order by RankProblem
When I use AND for each one it shows nothing, example:
Code:
Select *
From tblVendorInfo
where RankComplete IS NOT NULL AND RankInProgress IS NOT NULL AND DivisionName = 'BP'
Order by RankComplete
Subquery?