You are on page 1of 2

1. Which students have an ID number that is less than 50000?

SELECT StudentID,StudentName

FROM Student

WHERE StudentID < 50000

38214 Letersky

2. Show the name of student that starts with letter A.

SELECT StudentName

FROM Student

WHERE StudentName LIKE ‘A%’

Altvater

Altvater

Aiken

3. What is the biggest student id in the table?

SELECT max(StudentID)

FROM Student

66324

You might also like