PostgreSQL - Advanced PL/pgSQL
You want to create a PostgreSQL function that returns a table with columns
user_id INT and email TEXT from a users table, but only for users with verified emails (verified = TRUE). Which function body correctly implements this using RETURNS TABLE?