0
votes
2answers
33 views

MYSQL select random of each of the categories

I want to select random 5 records from each categories in the same table. table name: t_shop column name: shop_id, shop_categoryID For example: shop_id | shop_categoryID 1 | 1 2 | 1 5 | 1 7 | 1 9 ...
0
votes
4answers
23 views

Php MySQL Nonrepeating Random Data Display

Let's say I've got a mySQL database: two columns: ID and names, with 100 rows. What I'd like to do is pick out say 10 names - with no repeats - and display them in random order. Using this code, I ...
-3
votes
2answers
57 views

Random URL redirect using PHP and MySQL

I have a question about adding a link to my website that when 'clicked' will send the user to a random URL stored in my MySQL database. My database is titled "movie" and I would like to be able to ...
-1
votes
1answer
29 views

Array_Rand always returns same value PHP fetch array

I have this function: function set_spell() { global $connection; $query = "SELECT * FROM Spells"; $result_set = mysqli_query($connection, $query); $spell_id_list = mysqli_fetch_array($result_set); ...
3
votes
2answers
55 views

SQL: how to select randomly and order by higest

i have a schema look like this: CREATE TABLE users ( id int auto_increment primary key, name varchar(20), point int(255) ); INSERT INTO users (name, point) VALUES ('Jack', ...
0
votes
0answers
29 views

does the offset in a limit affect performance?

The simplified question (without context) is bold text, due to my tendency to over elaborate I am in a situation where I need to select a random record from the result of a very dynamic query. For ...
-2
votes
5answers
87 views

PHP Code to generate random ID number for database [closed]

Here is one for those well versed in PHP as well as MYSQL. I'm looking for a way to generate unique but yet random long numbered IDs for each entry into the database. I don't want it to start with ...
1
vote
3answers
45 views

Select Random from 3 Million rows [duplicate]

I have 3.2 million rows with a few keys to help speed up the sorting. However, as my table grows, things are getting slow and slower each day. Can you guys please take a look at my query and let me ...
2
votes
2answers
52 views

SQL to get even distribution from n groups - fetch random items

I have the following tables: TABLE product id int(11) title varchar(400) TABLE tag id int(11) text varchar(100) TABLE product_tag_map product_id int(11) tag_id int(11) PRODUCT_TAG_MAP maps tags ...
0
votes
1answer
36 views

mysql / php - 3 tables (if number exists)

I have a problem, i´m building an own register form for a browsergame. I have to place the planet on register, that the user get. so i have: 9 galaxies, each galaxy has 400 systems and each system ...
0
votes
2answers
70 views

Random number insert mySQL not working

Hey all i am created 2 random numbers like so: $firstlink = intval(mt_rand(100, 999) . mt_rand(100, 999) . mt_rand(1, 9) . mt_rand(100, 999)); // 10 digit $secondLink = intval(mt_rand(1000, 999) . ...
3
votes
4answers
51 views

How to display 3 random values from MYSQL table

How would I go about displaying 3 random values each time a page is loaded? At the minute I have it displaying one at a time using the following code: <?php $sSQLQuery = "SELECT careername FROM ...
0
votes
1answer
57 views

mysql weighted random results - how to get changed variable value after SELECT

I have a table keywords with columns keyword and weight. My goal is to randomly select one keyword, but to regard its weight (probability). I found two ways to solve this, where the latter one is more ...
1
vote
2answers
75 views

Insert random number into table upon new record creation

I would like to store random numbers in one MySql table, randomly retrieve one and insert it into another table column each time a new record is created. I want to delete the retrieved number from the ...
-1
votes
1answer
18 views

Increment value upto missing consicutive numbers

I have a table with a field have values 1,2,3,5,6,.... My problem is,When i try to insert "2" current 2,3 are incremented with 1 and 5,6 remains unchanged(because 4 is not exist),Then in the place of ...
4
votes
1answer
118 views

Using RAND with MD5 to generate unique key in MYSQL unique field. Possible? Acceptable practice?

I'm trying to implement a simple password reset system for my website. The idea is this: User requests password reset link. CodeIgniter system uses RAND and MD5 (I know it's unsecure and broken, ...
4
votes
3answers
94 views

MySQL RAND() how often can it be used? does it use /dev/random?

I have a table with few rows (tops 50), I need to get random value out of table I can do that by ORDER BY RAND() LIMIT 1 Main question is in the point when I have 6k selects in 5 seconds is rand ...
0
votes
2answers
44 views

Randomize x through y rows in a MYSQL database

For example, how can I randomize rows ten through 20? I only know how to randomize all rows using RANDR(). I am using PHP + MYSQLi. Can someone explain me using MYSQL RANDR() ? I know it's not ...
1
vote
2answers
46 views

Is is better to randomize result using MySQL or PHP? [closed]

Is it better to return random rows using MySQL or PHP commands? For example, I have a product table with 10 columns and 1000000 rows and want to return 10 random rows from it. Method 1 (let MySQL ...
0
votes
2answers
32 views

should I use MySQL procedure for this query?

I want to make stored procedure but I don't know what should be the right approach or if this is even possible to do in MySQL. Let me introduce you with my problem. Let's say I have table that has ...
-1
votes
2answers
70 views

How can I update many rows so the date column in each row has a unique date?

I have a database table with many rows which are already populated with data. This data was generated using generatedata.com's online data generation form. Most if it is fine, but the problem is ...
0
votes
2answers
44 views

MySQL - joining the same table 4 times having column 2,3 & 4 random and all different

for simplicity lets say it has only 1 field. ID. In MySQL, i want to list all the IDs just once (and in order) in the first column of the result, but in 2nd, 3rd and 4th columns i want to display ...
0
votes
0answers
72 views

Loading a random image on each button press

I'm new-ish to jquery and PhP, and I've been searching around for hours trying to find out a solution to my issue. TLDR; Basically what I'm trying to do is load a new random image each time a button ...
3
votes
3answers
96 views

why am I getting multiple rows in MYSQL query?

I am trying to retrive a random row from a table (user), by using the Primary Key _id and the following query. SELECT * FROM user WHERE _id IN (SELECT Floor(1 + ( Rand() * ( Count(_id) - 1 ) )) ...
0
votes
0answers
58 views

Multiple Weighted Random Advertisement Records from MySQL

I am building a simple Advertisement script with PHP and MySQL. Some Features it needs. MySQL can not use the slow rand() function When I call the Advertisement($spot, $ad_count) PHP function I can ...
3
votes
1answer
125 views

What is the datatype of facebook userid

What datatype facebook uses to store userid, what should be that best data type for such field performance and scalability perspective. If one uses int 4 bytes then i guess it ain't big enough, if 8 ...
0
votes
1answer
771 views

Online quiz system using php and sql session

I am currently working on a online quiz system which stores the value user answers in the database but only the marks and not the questions .On quiz page one question is selected among 10 question ...
0
votes
1answer
46 views

Mysql: ORDER BY a field randomly if a field has a value

I want to create a query like this SELECT id, name, type, image FROM table ORDER BY type ASC, image..... Pick up all type A rows first randomly, then list all type B rows randomly and all type C ...
0
votes
1answer
221 views

MySQL UPDATE with random number between 1-3

Got a big table and I want to add a column that has a randomly chosen number for each record. 1, 2, or 3. Having a hard time. Any ideas?
1
vote
1answer
74 views

Selecting random rows from a table automatically

I'm working on a project that requires back-end service. I am using MySQL and php scripts to achieve communication with server side. I would like to add a new feature on the back-end and that is the ...
0
votes
1answer
58 views

Random text from table mysql

i made a slider as you can see here. That will be like opinions, where my clients will can say something. Now the code where displays text is: <div> <p ...
1
vote
2answers
124 views

MySql Select data is many to many Relationship in PHP

ENTRY (Table) ent_seq entry 100010 1 100020 2 100030 3 100040 4 K_ELE (Table) KID entry keb 1 1 食べる 2 2 日本 3 3 先生 R_ELE (Table) RID entry ...
0
votes
1answer
48 views

Select random with limit not always working

I got this mysql select from some post here in this site, and 99% of the time it works great, but sometimes it won't return the number of random elements I asked for, and I have no idea why. Here's a ...
-6
votes
1answer
88 views

Get random text with MySQL with button click and no refresh

I want to get a random added text from my database. To get a new random text, I do not refresh the page but I want to be able to click a forward button. I Anyone know how I can solve it? There are ...
0
votes
2answers
56 views

Randomizing database results using php instead of mysql query

I currently use EZSQL class in php to query the MySQL database. I am trying to grab random records from the database, but I would like to know if I could randomize the results via php instead of the ...
0
votes
2answers
101 views

Selecting random value from database and linking it to another row

I'm trying to link 2 rows in a database so that the PHP code will be selecting randomly a value from one row, and be linking it to the second row. example: <?php ...
0
votes
1answer
39 views

Randomise strings in mysql

I've a string in mysql that i want to randomise so that every time i run the query, i get different results. The sample string $str = '4_127','2_84','2_85'; So, i will pass it to the ORDER BY ...
3
votes
1answer
191 views

sql mysql query for fetching a defined numbers of rows randomly based on condition

I am developing a Online Exam Application where I have a question master table which contains a field ( name : qtype ) containing the data for the type of question. A question type can be either of ...
1
vote
2answers
33 views

SQL: Limit and Randomize results in join

I am building a shopping system that finds items at nearby locations. Basically, each Location (a vendor) has an entry in a table called Location, with has columns for name, latitude, longitude and ...
0
votes
1answer
61 views

How can I randomize a single mysql column?

I have a database that consists of a string and a numeric probability (there are other columns but they are not relevant to the question). A simplified schema is ...
3
votes
4answers
146 views

Whats wrong with this PHP While loop script [closed]

Basically I made it to create a SQL query to insert about 5000 random numbers in a database $i (currently 10 just to figure it out). I previously tried to do it solely in MYSQL, but failed and don't ...
2
votes
1answer
85 views

Generating constrained DISTINCT elements with SQL RAND()

I have a SQL (MySQL SQL) statement, something like the following, to grab 10 records from table bar: SET @foo:=1; SELECT DISTINCT @start:=ROUND(RAND()*100), @start+ROUND(RAND()*100)+1, ...
1
vote
1answer
84 views

MySQL select random rows with order by

I want to retrieve random rows from table but this rows must be order in category. select category, (select order_number from orders where order_number in ...
0
votes
1answer
56 views

Mysql query rand() and order by

Hi i'm trying to get some random results ordered by the location ASC. This is my query: SELECT `location`, `route` FROM (`foo`) WHERE `location` != '' ORDER BY RAND(), `location` ASC LIMIT 8 the ...
1
vote
3answers
159 views

Mysql: Order by rand just one time

I need to make an order by rand but i dont want it to change in every refresh i need just one random , is that make sense ? Here is my code: function findSimilarByTag($gid,$limit=5) { ...
1
vote
1answer
67 views

Huge table of post like status, select random from top 100

I have a table which hold the post like statuses. table columns are : ID //which is unique incremental Post_id //liked post user_id //user who gave like or dislike type //"1","0" or ...
3
votes
4answers
412 views

MYSQL Select One Random record from each Category

I have a database with an Items table that looks something like this: id name category (int) There are several hundred thousand records. Each item can be in one of 7 different categories, which ...
2
votes
1answer
106 views

mysql select 3 random rows of each type

I have created the following query: SELECT random.aid, random.rand_pid, r3.filepath, r3.filename, r3.pid FROM (SELECT r.aid, (SELECT r2.pid FROM cpg_pictures r2 WHERE r2.aid = r.aid ...
0
votes
2answers
93 views

Mysql: get 10 random rows among 50 rows (the rest excluded by WHERE) from 600k rows fast

My question is based on the SO MySQL select 10 random rows from 600K rows fast. It is known SELECT column FROM table ORDER BY RAND() LIMIT 10 is too slow for huge tables, another tricks and methods ...
0
votes
2answers
87 views

MySQL: fast selection N random rows from table where pair of columns (not a column) is unique

There is a table that contains such columns: id, person_id, pet_id, description There are some statements about this table: id is a primary key, autoincrement Each pair (person_id, pet_id) is ...

1 2 3 4 5 7