17
votes
8answers
582 views
Efficiently querying a 15,000,000 rows table in MySQL
Consider the following database tables:
Table "messages" with 13,000,000 rows (one row per message).
Table "users" with 3,000,000 rows (one row per user).
The following query is used to fetch a …
7
votes
7answers
130 views
SQL “GROUP BY” issue
Hi,
I'm designing a shopping cart. To circumvent the problem of old invoices showing inaccurate pricing after a product's price gets changed, I moved the price field from the Product table into a …
5
votes
3answers
104 views
Single Equals in MYSQL
Hi, I was wondering why MYSQL uses a single equals sign in conditional statements instead of the more typical two equals signs. Is there a technical/historical reason for this? Thanks.
5
votes
3answers
370 views
A reverse of Haversine formula for MySQL?
In my DB i store a center point, along with a radius (in meters).
I'm looking to pass in a lat/lng, and then have the mysql values i've stored create a circle to tell me if my point i passed in is …
5
votes
4answers
239 views
Why is mysql ignoring the ‘obvious’ key to use in this simple join query?
Hello. I have what I'd thought would be a simple query, but it takes 'forever'. I'm not great with SQL optimizations, so I thought I could ask you guys.
Here's the query, with EXPLAIN:
EXPLAIN …
4
votes
5answers
131 views
Concatenating records in a single column without looping?
I have a table with 1 column of varchar values. I am looking for a way to concatenate those values into a single value without a loop, if possible. If a loop is the most efficient way of going about …
4
votes
1answer
129 views
Is there cleaner syntax for WHERE id != 1 AND id != 2 AND id != 7
Is there a cleaner way to perform this query in MySQL?
SELECT * FROM table WHERE id != 1 AND id != 2 AND id != 7
like:
SELECT * FROM table WHERE id != (1,2,7)
4
votes
4answers
310 views
Optimizing my mysql query to use index for sorting
I have a composite index based on 3 columns, two of which are constrained in my query and the 3rd is in order by clause yet mysql doesn't use index for sorting.
explain select * from videos where …
4
votes
1answer
94 views
Is it possible to use Mysql foreign keys in InnoDB tables for inverse lookup?
Hi!
I wonder if it is possible to use FK's in Mysql (InnoDB) for inverse lookup.
The reason - I want to read an XML-like structure from the db (using one table per "layer"), but be able to do this …
4
votes
4answers
348 views
How do you select every n-th row from mysql
I have a series of values in a database that I need to pull to create a line chart. Because i dont require high resolution I would like to resample the data by selecting every 5th row from the …
4
votes
3answers
316 views
Find overlapping (date/time) rows within one table
I have a table which stores in each row a meeting with start date/time and end date/time.
meetingID int
meetingStart datetime
meetingEnd datetime
Desired output:
For each pair of overlapping …
3
votes
3answers
133 views
Simple query takes 15-30 seconds
The following query is pretty simple. It selects the last 20 records from a messages table for use in a paging scenario. The first time this query is run, it takes from 15 to 30 seconds. Subsequent …
3
votes
2answers
37 views
MySQL: Getting data for histogram plot?
Is there a way to specify bin sizes in MySQL? Right now, I am trying the following SQL query:
select total, count(total) from faults GROUP BY total;
The data that is being generated is good enough …
3
votes
1answer
43 views
Select * from table1 where JID is not in table2 with table2.uid also not being 11111
I want to select everything from table one, which contains a column JID. These are available things the player can learn. But there is a table2 which has a list of things the player has already …
3
votes
5answers
175 views
PHP will not delete from MySQL
For some reason, JavaScript/PHP wont delete my data from MySQL! Here is the rundown of the problem.
I have an array that displays all my MySQL entries in a nice format, with a button to delete the …
