CS1103/Assignments/As4/Problem74.sql

4 lines
90 B
MySQL
Raw Normal View History

2022-10-07 00:48:09 -03:00
select AU_ID, AU_FNAME, AU_LNAME
from AUTHOR
where AU_BIRTHYEAR is NULL
order by AU_ID;