SELECT 学号, 姓名, 性别, year(date())-year(出生日期) AS 年龄FROM 学生WHERE 性别="女" and year(date())-year(出生日期)<21ORDER BY year(date())-year(出生日期)