Results 1 to 3 of 3
  1. #1
    Cat Ball is offline Novice
    Windows 7 64bit Access 2007
    Join Date
    Mar 2023
    Posts
    4

    How do I create a query that shows the score of the student with the lowest English score?

    How do I create a query that shows the score of Math and Chemistry of the student with the lowest English score?


    (With SQL coding)

    StudentInformation:


    Math score:


    Chemistry score:


    English score:

  2. #2
    orange's Avatar
    orange is online now Moderator
    Windows 10 Office 365
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,722
    Try
    Code:
    select studentid,math, chemistry from catBallT 
    where studentid =(SELECT b.studentid
                                       FROM CatBallT as B
                                      where english = 
                                              (select min(c.English) from catBallt as C
                                              )
                                       )

  3. #3
    Cat Ball is offline Novice
    Windows 7 64bit Access 2007
    Join Date
    Mar 2023
    Posts
    4
    thank you!!!!

Please reply to this thread with any new information or opinions.

Similar Threads

  1. PERCENTAGE score if value>0
    By max20 in forum Access
    Replies: 2
    Last Post: 05-14-2017, 07:11 PM
  2. Average score
    By GMG in forum Access
    Replies: 3
    Last Post: 10-13-2015, 01:41 PM
  3. Replies: 1
    Last Post: 06-24-2013, 02:24 AM
  4. how to get the average of score?
    By beauty in forum Access
    Replies: 1
    Last Post: 10-08-2011, 06:40 AM
  5. score and place query
    By ymds in forum Queries
    Replies: 1
    Last Post: 06-10-2010, 06:07 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums