1
vote
3answers
81 views

PHP sort random MySQL result based on a column [duplicate]

I have this table (PERSONS) with 25M rows: ID int(10) PK points int(6) INDEX some other columns I want to show the user 4 random rows which are somewhat close to each other in points. After a lot ...
2
votes
2answers
33 views

Generating an even random range in Netezza

Netezza says that its random() function generates a float between 0.0 and 0.99999... I'm trying to generate random ints within a range (e.g., between 5 and 10). The internet told me to use an ...
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', ...
2
votes
2answers
54 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
61 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
80 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 ...
2
votes
1answer
45 views

Select random row for each group

I have a table like this ID ATTRIBUTE 1 A 1 A 1 B 1 C 2 B 2 C 2 C 3 A 3 B 3 C I'd like to select just one random attribute for each ID. The result ...
0
votes
1answer
75 views

SQL Server trigger - select random ID

I am going to write a trigger which inserts a row into a table. The insert statement includes an ID column. I want my trigger to randomly choose one out of three IDs to insert, is it possible?
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 ...
3
votes
3answers
97 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
1answer
55 views

Generate SQL basis on the order in which columns are there in ArrayList

I have a class named TableConnectionInfo which contains details about the table such as tableName and it's columns. I have written a method in which I am supposed to generate a random select sql by ...
2
votes
3answers
136 views

Why do I need to include rownum field in this Oracle SQL query while using dbms_random.value function?

I am pulling a random sample from some tables and noticed that depending on how I write the query it doesn't work. Obviously, I wasn't using all_tab_columns, I was just providing an example that would ...
2
votes
2answers
113 views

Select a random entry from a group after grouping by a value (not column)?

I want to write a query using Postgres and PostGIS. I'm also using Rails with rgeo, rgeo-activerecord and activerecord-postgis-adapter, but the Rails stuff is rather unimportant. The table structure: ...
0
votes
2answers
563 views

Update a SQL table with random values from another table (no join condition)

I'm working on a script to anonymize a table with patient data. I generated a table containing 50,000 rows of anonymous data. What I need is a number of columns in the patient table to be updated ...
3
votes
1answer
194 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 ...
0
votes
1answer
48 views

How get random row?

Good day. SELECT * FROM banners WHERE seet='$seet' Structure table banners here http://i.stack.imgur.com/KR6Xu.png Tell me please how get random one row from table?
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, ...
2
votes
2answers
151 views

Selecting random rows from a big table in H2 database

I have a big table in my database (potentially millions of records) and I need to select #X random rows (let's say #X between 10 and 50) , but I need this query to be as optimal as possible. The ...
0
votes
1answer
57 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 ...
3
votes
4answers
422 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 ...
1
vote
1answer
98 views

SQLite - select random datetime in range

Im not familiar with SQLite. Can someone help me with generating random datetime value? I tried to start with this (its for MS-SQL): select dateadd( millisecond, ...
0
votes
1answer
106 views

Get n random records where n is stored in a table [duplicate]

Possible Duplicate: How to randomly select rows in SQL? Suppose that -- in Teradata 12 -- I have a table TXN that has Transaction_ID and Store_nbr. Suppose also that I have a table SAMP ...
1
vote
4answers
118 views

Random draw without replacement

I want to have a PHP code to draw some ids one by one without replacement randomly from a table in MySQL database. Now I implement it like this: There is a table called box CREATE TABLE box ( id ...
2
votes
1answer
253 views

Oracle - INSERT RANDOMLY generated English words as dummy data

I have an Oracle database that could store millions of books. I dont have the data though! How do I insert about a million dummy book titles in oracle? Is there a function that lets you generate ...
4
votes
4answers
471 views

SQL: how to get random number of rows from one table for each row in another

I have two tables where the data is not related For each row in table A i want e.g. 3 random rows in table B This is fairly easy using a cursor, but it is awfully slow So how can i express this in ...
3
votes
2answers
73 views

Random Order by Group in Random Order

I have 5 tables in mysql forming 4 one to many relationships. The tables are last_name, parent, child, grandchild, and city. Last name has many parents, parent has many children, child has many ...
0
votes
3answers
89 views

MySQL RAND() 7 LIMIT

My database table has 15 records and I want to show 9 at random on screen. SELECT * FROM tablename ORDER BY RAND() LIMIT 9 This works as expected, but what if the table only has 9 records? I need ...
0
votes
1answer
132 views

SQL query using replace a value in one table by randomly selecting a value in another table

I have a table with an value that I would like to be updated periodically with a cron job. However, I need to update the value by replacing it with a value from a different table. The issue is that ...
3
votes
2answers
39 views

Is there / would be feasible a service providing random elements from a given SQL table?

ABSTRACT Talking with some colleagues we came accross the "extract random row from a big database table" issue. It's a classic one and we know the naive approach (also on SO) is usually something ...
2
votes
1answer
35 views

mysql select number overflow

I have the following query: SELECT (RAND() * (SELECT MAX(id) FROM frag.test)) Results in: -2.36835027969671e+18 id is a: id bigint(20) unsigned The things is that SELECT MAX(id) FROM frag.test ...
1
vote
2answers
202 views

get random no between range without duplicate

All I want logical help. I have 100 row in database and get all rows random ally without duplication I have used below code. public ArrayList<Rows> getRows(){ ArrayList<Rows> ...
1
vote
2answers
123 views

Update column with random value

I have a table: ID | VALUE | DATE 1 | 5 | 2012-10-01 2 | 7 | 2012-10-02 3 | 3 | 2012-10-05 4 | 0 | 2012-05-07 I want to add on the top of the current value with the VALUE ...
1
vote
2answers
155 views

Codeigniter random row mysql error- Object of class CI_DB_mysqli_result could not be converted to string

function random() { $anketadb = $this->load->database('anketa',TRUE); $br = $anketadb->count_all_results('anketadata'); $nmb = mt_rand(1,$br); if ($nmb != 1){ $nmb = ...
2
votes
3answers
95 views

random images from db, with links trough id

Having some issues, basically I have a random image gallery. This is the code for the random thumbnails: <?php include('../../connect.php'); $result = mysql_query("SELECT * ...
4
votes
1answer
90 views

Select X random users per item

I have 2 tables: Items & Users. Items contains ItemID, and Num_Users Users contains UserID For each ItemID, I need to randomly select a number of Users according to the value stated in the ...
0
votes
2answers
104 views

inserting id into table with random number

I need to write a view that does a merge insert/update. When inserting, I need to insert id. This id is also being inserted by random number generator in another program ( which I can't change ). I ...
1
vote
3answers
158 views

MySQL - how to replace ORDER BY in a bit more complicated query?

For fetching records from a table I use this mysql query: SELECT a.id as aid, a.data1 as adata1, a.data2 as adata2 b.id as bid, b.data1 as bdata1, b.data2 as bdata2 FROM table AS a JOIN ...
0
votes
1answer
337 views

PHP, MySQL: how to select random records without RAND (attempt to avoid RAND()) [duplicate]

Possible Duplicate: How to request a random row in SQL? Because of a huge table I cannot use MySQL function RAND() and trying to avoid using RAND() this way: $a = ...
0
votes
3answers
314 views

Fixed array and random numbers in an SQL query

What's the easiest way to select one of five fixed strings returned in an SQL Server query, randomly? I.e. the equivalent of: function randomColumn() { var values = ['apple', 'banana', 'orange', ...
0
votes
1answer
200 views

MySQL rand() ignore duplicates

I have been trying to use the following MySQL: SELECT distinct(photos.id) , photos.file , photos.tags , photos.desc , photos.ratio , tags.bid , ...
1
vote
2answers
144 views

get one random record per combination of two columns (one table)

I have this table rss_user. You see account name, application name and application type. with RSS_USER_NAME RSS_NAME RSS_TYPE example data tom@gmail.com webapp4 webapps ...
1
vote
1answer
43 views

SELECT RAND AS field while selecting other values modified by field

I tried to simplify this, so its more of an example of the actual code. I want to get a random number and use it to modify several values, but I need all the values to be modified by the same random ...
1
vote
2answers
144 views

Assign a unique number in a range randomly

I need to assign a list of employees a unique number from 1 to 1000 (or however many employees there are). The numbers can't repeat and need to be in a random order against the employee list. The ...
0
votes
0answers
48 views

Select two random entries with same type

I would like to run a SQL statement that selects two random entries from my table with the same type (for every type). I have an ‘id’, ‘question’ and ‘type’ field. I found the following code from a ...
6
votes
5answers
1k views

Unique 6 digit number but not sequential for Customer ID (SQL)

Our Customer table has an int Identity column for ID. This was going to be given out to customers, so when they phone they could just give their ID. It is now obvious that our competitors would ...
2
votes
2answers
314 views

Create a Random 4 digit number for each record in Access or SQL?

I'm working in Access and I need to create a random 4 digit-number for a list of users separated into records. My query keeps returning the same random number for each record. SELECT 1000 + ...
3
votes
2answers
318 views

Shuffle a string with mysql/sql

I was wondering, if there is some way to shuffle the letters of a string in mysql/sql, i.e. something like the pseudocode: SELECT SHUFFLE('abcdef')? Couldn't find any from ...
0
votes
2answers
119 views

How to combine SELECT SQL subquerys with RAND?

Hi I'm trying to combine some querys in to one, but I'm unsure how to solve this. I know there are millions of other examples but I can't figure out how to translate them into my query. This is the ...
0
votes
3answers
181 views

Random join in oracle

I have three queries and I want result rows consisting of entries of these queries randomly joined next to each other. I dont't want to union the results, but to join them in a more or less random ...
0
votes
1answer
133 views

SQL selecting random rows, but not reselecting them next time

I'm making a random selection of 50 items, but when another call is made, I want to select another random 50 that DOES NOT include anything selected previously. How best to do this? Is there an SQL ...

1 2 3 4