Jump to content

Recommended Posts

i have two table in my database which is the room table and roomtype table.i'm using phpmyadmin.

 

room table

room_no

r_roomtypeID

 

 

roomtype table

roomtypeID

roomtype

 

 

how can i create a query that can select A random room_no from "room table "

based on the roomtypeID in the "table roomtype"

 

p/s - each roomtypeID got it's own quantity room no.

 

              roomtypeID    room_no

 

example  : Single room  : 1-10

      :    Deluxe room  : 11-20

      :  Suite room  : 21-30

 

right now i'm only having this kind of idea. the random number from room. I don't know how can i generate A random room_no from table room based on the roomtypeID.

(SELECT room_no FROM room ORDER BY RAND( )LIMIT 1) 

 

any ideas is really appreciated:)

SELECT * FROM room WHERE r_roomtypeID = $rtID ORDER BY rand() LIMIT 1

 

or

 

SELECT * FROM room r, roomtype rt WHERE rt.roomtypeID = r.r_roomtypeID AND rt.roomtypeID = $rtID ORDER BY rand() LIMIT 1

 

I prefer the first

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.