plese anyone tell me what the meaning of "t" after this postgres Sql query.
const query = select jsonb_agg(single_day) as availability from (select jsonb_build_object('day', day, 'hours_format', min(hours_format),'time_array', jsonb_agg(jsonb_build_object('start_time', start_time, 'end_time', end_time) order by start_time ASC)) as single_day from provider_availability where user_id = ${user_id} group by day) t,