If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Need help for mysql statement. urgent

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-28-04, 03:58
yorke1912 yorke1912 is offline
Registered User
 
Join Date: Oct 2004
Posts: 4
Need help for mysql statement. urgent

Hi i need help here...
My sql statement is
$query = "SELECT * FROM ei_module m, ei_student s, ei_result r WHERE r.admin_no LIKE '". $adminno ."' AND r.exam_grade = 'A' AND r.module_code = m.module_code AND s.admin_no = r.admin_no";

what i want to get is

to display results with both Grade A or Grade B.
but i could only get : Grade A but not Grade B
Grade B but not Grade A
what must i do to my mysql statement in order to get the desire result.
Thanks for any kind soul who could help me with it.
Reply With Quote
  #2 (permalink)  
Old 10-28-04, 04:16
yorke1912 yorke1912 is offline
Registered User
 
Join Date: Oct 2004
Posts: 4
ermz.. i manage to figure it out le.
My new sql statement is
$query = "SELECT * FROM ei_module m, ei_student s, ei_result r WHERE r.admin_no LIKE '". $adminno ."' AND r.exam_grade <= 'B' AND r.module_code = m.module_code AND s.admin_no = r.admin_no";

But now, my results wasn't in order.. can any one show me the syntax for sorting?
Thanks a lot
Reply With Quote
  #3 (permalink)  
Old 10-28-04, 04:22
yorke1912 yorke1912 is offline
Registered User
 
Join Date: Oct 2004
Posts: 4
opps.. i solved it out again le.
I use ORDER BY..
Haha.. sorry for those who took your time viewing this...
Cheers...
Reply With Quote
  #4 (permalink)  
Old 10-28-04, 06:35
r937 r937 is online now
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,524
please do not post the same question in more than one forum

see http://www.dbforums.com/t1051484.html
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On