Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

mysql menghitung ke dalam variabel PHP

Seperti ini:

// Changed the query - there's no need for DISTINCT
// and aliased the count as "num"
$data = mysql_query('SELECT COUNT(`users_id`) AS num FROM `users_table`') or die(mysql_error());

// A COUNT query will always return 1 row
// (unless it fails, in which case we die above)
// Use fetch_assoc for a nice associative array - much easier to use
$row = mysql_fetch_assoc($data);

// Get the number of uses from the array
// 'num' is what we aliased the column as above
$numUsers = $row['num'];


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Panduan menggunakan Sphinx dengan PHP dan MySQL

  2. Bisakah saya menjalankan HTTP GET langsung di SQL di bawah MySQL?

  3. Mengakses Database XAMPP MySql dari Komputer Lain

  4. PERBARUI dengan ORDER BY dan LIMIT tidak berfungsi di MYSQL

  5. Penskalaan Otomatis dengan Amazon Aurora Tanpa Server