Help with Query
Posted: Thu Jan 19, 2023 12:17 pm
I want to display ADA Code, Description and Fee for a fee schedule for a range of codes.
This query gives me the ADA Code and Description but I am having trouble figuring out how to change the query to add the fee.
This query gives me the ADA Code and Description but I am having trouble figuring out how to change the query to add the fee.
SELECT ProcCode AS Code, Descript AS Description FROM procedurecode INNER JOIN fee ON fee.CodeNum = procedurecode.CodeNum WHERE ProcCode >= 'D7140' AND ProcCode <= 'D7953' AND fee.FeeSched = 53 ORDER BY Code Asc