Answer the question
In order to leave comments, you need to log in
What does the symbol t mean in this query?
select max(cnt) from (select count(recruitmental_id) as cnt from recruitment_for_the_program group by program_id) t
I'm guessing t is an abbreviation for the table name, but I haven't seen it assigned. Perhaps the matter is in cnt, which, in theory, is just a name too. Please clarify
Answer the question
In order to leave comments, you need to log in
t is short for expression as t
that assigns a name to the result of the subquery.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question