sto studiando uno script e mi sono inbattuto in una query che non capisco:


// calculate the number of rows for the query. We need this to paging the result
$result = mysql_query("SELECT COUNT(*) AS count FROM NOME_TABELLA a, clients b WHERE a.client_id=b.client_id");
$row = mysql_fetch_array($result,MYSQL_ASSOC);
$count = $row['count'];


ora client_id è un campo, ma non capisco la sintassi della query....

cosa c'entrano "a, clients b" ?