on 2013 Feb 15 6:54 AM
Hi all SQL Anywhere 8.0
I am using the following SQL successfully
SELECT cr_no, dated, height, weight FROM malaviya_vitals WHERE cr_no IN ( SELECT cr_no FROM mal_diagnosis WHERE mal_diagnosis.diag_code LIKE M05.%' ) order by cr_no, dated;
with a result set of 6605 rows
However I want to refine the result set a little more to get only the weight and height data of this group of patients only the first time the patient was seen. [dated = MIN (dated)] Need help to construct the exact syntax (should lead to a total of around 1215 rows = no. of patients with diag_code M05.---)
Any help will be appreciated
Regards
Request clarification before answering.
Try adding the following subquery to the outer WHERE
clause:
AND dated = ( SELECT MIN( t.dated ) FROM malaviya_vitals AS t WHERE t.cr_no = malaviya_vitals.cr_no )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
31 | |
8 | |
8 | |
6 | |
6 | |
6 | |
5 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.