1-- Retrieves a user's full name by their user ID. 2select u.full_name 3from public.user_account as u 4where u.id = $1;