Interview questions--A student with a SQL query score of not less than 80

Source: Internet
Author: User

CREATE TABLE Marklist
(
Name varchar (10),
Course varchar (10),
Mark float
)

Insert into Marklist (Name,course,mark) VALUES (' Zhang San ', ' math ', 75);
Insert into Marklist (Name,course,mark) VALUES (' John Doe ', ' language ', 76);
Insert into Marklist (Name,course,mark) VALUES (' John Doe ', ' math ', 75);
Insert into Marklist (Name,course,mark) VALUES (' Harry ', ' English ', 100);
Insert into Marklist (Name,course,mark) VALUES (' Harry ', ' language ', 81);

1: SELECT distinct name from Marklist where name is not in (select name from Marklist where Mark < 80)

2:select name from Marklist Group by name have min (Mark) > 80

Interview questions--A student with a SQL query score of not less than 80

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.