Viewing 15 posts - 826 through 840 (of 4,087 total)
2 threads, 8 posts, and only 1 contributor. Is he trying to inflate his numbers?
Drew
October 23, 2018 at 2:22 pm
October 23, 2018 at 9:51 am
I did exactly that at a previous job. We had to send out letters for an insurance company and the content of the letter depended on the type of insurance...
October 23, 2018 at 8:17 am
October 22, 2018 at 3:24 pm
October 22, 2018 at 9:43 am
This should be handled in the presentation layer, not the database layer.
SQL Server is strongly typed. That means that you cannot mix string ('') and decimal data in...
October 19, 2018 at 2:15 pm
Here's another method.
SELECT PatientID
FROM #t
WHERE PatientBalance <> 0
GROUP BY PatientID
HAVING MAX(PatientBalance) > 0
AND MIN(PatientBalance) < 0
Drew
October 19, 2018 at 12:18 pm
SELECT PatientID,...
October 19, 2018 at 12:15 pm
October 19, 2018 at 11:47 am
October 19, 2018 at 10:30 am
October 17, 2018 at 2:19 pm
October 17, 2018 at 2:17 pm
Viewing 15 posts - 826 through 840 (of 4,087 total)