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

tại sao truy vấn MySQL này tạo ra số hàng sai?

Để các hàng tăng dần, việc đơn giản là di chuyển @num tính toán vào truy vấn bên ngoài. Và trong tình huống đó, @current_product_id không cần thiết vì @num có thể tăng trực tiếp.

SET @num :=0, @current_shop_id := NULL, @current_product_id := NULL;

SELECT 
  *,
  /* Perform the row increment in the outer query so it acts on the final rowset */
  @num := @num+1 AS row_number
FROM (
    SELECT products.shop_id, products.product_id, @current_shop_id := shops.shop_id AS shop_dummy, @current_product_id := products.product_id AS product_dummy

    FROM
    favorites fav1 INNER JOIN
    products ON
    fav1.product_id=products.product_id AND 
    fav1.current=1 AND
    fav1.closeted=1 AND 
    fav1.user_id=30  INNER JOIN

    shops ON
    shops.shop_id = products.shop_id

    ORDER BY shops.shop ASC, products.product_id DESC

) AS rowed_results 
WHERE
  rowed_results.row_number>=0
  AND rowed_results.row_number<(20)
  AND shop_id=130


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Ý nghĩa của các thủ tục được lưu trữ được biên dịch trước là gì?

  2. java.sql.SQLException:Giá trị đối số không hợp lệ:java.io.NotSerializableException

  3. ngăn chặn việc chèn hàng trùng lặp trong php / mysql

  4. Gửi + -200 email bằng hàm php mail () trong một vòng lặp

  5. Làm thế nào để truy vấn nhiều đến nhiều mối quan hệ tiếp theo?