Tagged Questions

3
votes
3answers
893 views

SQL : select one row randomly, but taking into account a weight

I'm using MySQL. I have a table which looks like that: id: primary key content: varchar weight: int What I want to do is randomly select one row from this table, but taking into account the weight. ...
1
vote
2answers
314 views

MySQL: How to “sum” product weight if the product are in different lines

I have to sum the weight of the certain products, but they are in different lines of MySQL. How to do it? Here is an example of my database: ID | Product_id | weight_kg | Quantity | 1 | 201 ...
0
votes
1answer
375 views

Mysql Weight based selection

I'm trying to select a number of elements from a mysql table based on their weight, example table being as follows. Name | Weight ------------- Bobo | 0.1 Jill | 0.3 Andy | 0.5 Dave | 0.9 Where ...