sql >> Database >  >> RDS >> Mysql

hoe de totale opmerking te tellen

Probeer dit:

list($count) = mysql_fetch_row(mysql_query("select count(*) from `test`"));
echo $count;

Als u al een zoekopdracht uitvoert om commentaar te krijgen, kunt u dit ook proberen:

$sql = mysql_query("select sql_calc_found_rows * from `test` order by `id` desc limit 10");
// ^ Get the 10 most recent comments
list($count) = mysql_fetch_row(mysql_query("select found_rows()"));
// this avoids having to run the entire query again, great for efficiency!
while($comment = mysql_fetch_assoc($sql)) var_dump($comment); // just an example



  1. Kolom _ID bestaat niet fout hoewel het in tabel bestaat

  2. AWS MySQL RDS versus AWS DynamoDB

  3. Hoe GROTE BLOB's (> 100 MB) in Oracle te behouden met Hibernate

  4. java jdbc mysql-connector:hoe loskoppelen op te lossen na een lange inactieve tijd