I am trying to obtain the row number (i.e. rank) for the following select statement (which includes a column JOIN) but without declaring a SET variable at the beginning.
Reason for this is because I am using a WordPress/MySQL plugin which can only emulate single statement code. The common hack of declaring a prior variable to 0 then incrementing is not recognized.
Is there another way to obtain the row number using the select & join below?
SELECT s.id
     , s.item
     , s.state
     , c.job_count 
  FROM wp_state_tab s
  LEFT 
  JOIN wp_custom_tab c
    ON c.state_id = s.id 
 WHERE c.date = CURDATE()  
 ORDER 
    BY c.job_count DESC
Sample Data Output
MySQL version is 5.6.40-84.0-log

 
     
    