CS1103/Assignments/As4/Problem72.sql

4 lines
94 B
MySQL
Raw Normal View History

2022-10-07 00:48:09 -03:00
select PAT_ID, PAT_FNAME, PAT_LNAME
from PATRON
where PAT_TYPE = 'student'
order by PAT_ID;