SELECT 
    username,
    age,
    IF(age BETWEEN 18 AND 65, 'Valid Age', 'Invalid Age') AS age_status
FROM users;