Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

số mysql vào biến PHP

Như thế này:

// 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. Nhập dữ liệu vào cơ sở dữ liệu MySQL

  2. Làm cách nào để lấy một truy vấn SQL thô, đã biên dịch từ một biểu thức SQLAlchemy?

  3. laravel 4 - làm thế nào để Giới hạn (Lấy và Bỏ qua) cho ORM Hùng biện?

  4. Bảng cơ sở dữ liệu không tồn tại theo trình biên dịch studio android

  5. MySQL Preferred Engine - MyISAM hoặc InnoDB