Jump to content

Using row_number on attribute to only return 5 rows


webdeveloper123
Go to solution Solved by Barand,

Recommended Posts

Hi guys,

I am trying to limit an attribute in an sql select statement to only return 5 rows. I've been researching it and apparently I have to use row_number. I am trying to limit description as this has the facilities for the hotel room. There could be anywhere bewteen 6 and 14 , but I only want to show a maximum of 5. I have got this far:

  SELECT *
FROM 
    (SELECT description,
         facility_id,
         row_number()
        OVER (order by facility_id) AS row_num
    FROM facility) f
WHERE  row_num <= 5;

It seems to be giving me the correct results. But now I have to merge it into this:

SELECT rs.description
     , rs.sleeps
     , rs.image
     , rs.price
     , GROUP_CONCAT(DISTINCT f.description SEPARATOR ' &bull; ') AS rmfac
     , rt.description as rmtype
     , r.room_id
     , r.room_number
FROM room as r 
     JOIN roomtype as rt ON  r.roomtype_id = rt.roomtype_id
     JOIN roomsize as rs ON r.size_id = rs.size_id
     JOIN room_facility as rf ON rf.size_id = rs.size_id
     JOIN facility as f ON rf.facility_id = f.facility_id
     LEFT JOIN room_booking as rb ON r.room_id = rb.room_id
                                  AND rb.departureDate > :arrival
                                  AND rb.arrivalDate <= :departure
WHERE rb.room_id IS NULL 
GROUP BY room_id;

I have tried several ways including this:

SELECT rs.description
     , rs.sleeps
     , rs.image
     , rs.price
     , GROUP_CONCAT(DISTINCT f.description SEPARATOR ' &bull; ') AS rmfac
     , row_number()
        OVER (order by f.facility_id) AS row_num
     , rt.description as rmtype
     , r.room_id
     , r.room_number
FROM room as r 
     JOIN roomtype as rt ON  r.roomtype_id = rt.roomtype_id
     JOIN roomsize as rs ON r.size_id = rs.size_id
     JOIN room_facility as rf ON rf.size_id = rs.size_id
     JOIN facility as f ON rf.facility_id = f.facility_id
     LEFT JOIN room_booking as rb ON r.room_id = rb.room_id
                                  AND rb.departureDate > '2024-01-01'
                                  AND rb.arrivalDate <= '2024-01-05' 
WHERE rb.room_id IS NULL 
GROUP BY room_id;
WHERE  row_num <= 5;

But I get the error:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE  row_num <= 5' at line 1

At first I thought it was because I had 2 x WHERE clauses, so I just joined them together using AND I still get an error.

Is ORDER BY and GROUP BY clashing?

Can someone help please?

Thanks

Link to comment
Share on other sites

1 hour ago, webdeveloper123 said:

I don't get it. I have to put the whole row_number code in the WHERE clause?

Yes. Aliases don't exist at the time the query uses the WHERE clause - they are created on output.

So...

WHERE rb.room_id IS NULL 
      AND row_number() OVER (order by f.facility_id) <= 5

 

Link to comment
Share on other sites

Hey Barand,

Thanks for the code but sorry I'm getting a bit confused. I'm using:

SELECT rs.description
     , rs.sleeps
     , rs.image
     , rs.price
     , GROUP_CONCAT(DISTINCT f.description SEPARATOR ' &bull; ') AS rmfac
     , rt.description as rmtype
     , r.room_id
     , r.room_number
FROM room as r 
     JOIN roomtype as rt ON  r.roomtype_id = rt.roomtype_id
     JOIN roomsize as rs ON r.size_id = rs.size_id
     JOIN room_facility as rf ON rf.size_id = rs.size_id
     JOIN facility as f ON rf.facility_id = f.facility_id
     LEFT JOIN room_booking as rb ON r.room_id = rb.room_id
                                  AND rb.departureDate > :arrival
                                  AND rb.arrivalDate <= :departure



WHERE rb.room_id IS NULL 
      AND row_number() OVER (order by f.facility_id) <= 5
GROUP BY room_id;

I tried it several ways, different order of code but keep getting the same error:

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 4015 Window function is allowed only in 
SELECT list and ORDER BY clause in /var/www/vhosts/:86 Stack trace: #0 
/var/www/vhosts/(86): PDO->prepare() #1 {main} thrown in /var/www/vhosts/ on line 86

Thanks

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.