18
votes
12answers
554 views
How bad is my query?
Ok I need to build a query based on some user input to filter the results.
The query basically goes something like this:
SELECT * FROM my_table ORDER BY ordering_fld;
There are four text boxes in …
13
votes
8answers
641 views
Query against 250k rows taking 53 seconds
The box this query is running on is a dedicated server running in a datacenter.
AMD Opteron 1354 Quad-Core 2.20GHz
2GB of RAM
Windows Server 2008 x64 (Yes I know I only have 2GB of RAM, I'm upgrading …
12
votes
8answers
205 views
Very slow MYSQL query for 2.5 million row table
Hi,
I'm really struggling to get a query time down, its currently having to query 2.5 million rows and it takes over 20 seconds
here is the query
SELECT play_date AS date, COUNT(DISTINCT(email)) AS …
12
votes
10answers
529 views
Does anyone use Right Outer Joins?
I use INNER JOIN and LEFT OUTER JOINs all the time. However, I never seem to need RIGHT OUTER JOINs, ever.
I've seen plenty of nasty auto-generated SQL that uses right joins, but to me, that code …
9
votes
10answers
451 views
How to find the one hour period with the most datapoints?
I have a database table with hundreds of thousands of forum posts, and I would like to find out what hour-long period contains the most number of posts.
I could crawl forward one minute at a time, …
8
votes
3answers
173 views
Reverse wikipedia geotagging lookup
Wikipedia is geotagging a lot of its articles. (Look in the top right corner of the page.)
Is there any API for querying all geotagged pages within a specified radius of a geographical position?
…
8
votes
1answer
374 views
How do I Get a WPF DataGrid to Save Changes Back to the DataBase?
How do I get a WPF DataGrid to save changes back to the database?
I've data-bound my DataGrid control to a DataTable object, and populated that table with a very simple SELECT query that retrieves …
8
votes
3answers
1k views
Union and Intersect in Django
class Tag(models.Model):
name = models.CharField(maxlength=100)
class Blog(models.Model):
name = models.CharField(maxlength=100)
tags = models.ManyToManyField(Tag)
Simple models just to ask …
7
votes
4answers
827 views
Does adding ‘LIMIT 1’ to MySQL queries make them faster when you know there will only be 1 result?
When I add LIMIT 1 to a MySQL query, does it stop the search after it finds 1 result (thus making it faster) or does it still fetch all of the results and truncate at the end?
7
votes
2answers
158 views
Looking for advice on a “related videos” query on a tagged video system
Well I run a small video website and on the actual video page there is a strip of "related videos" similar to most video sides (e.g. YouTube) and currently all I'm doing is taking one of its tags …
7
votes
3answers
512 views
How to select maximum 3 items per users in MySQL?
Hi,
I run a website where users can post items (e.g. pictures). The items are stored in a MySQL database.
I want to query for the last ten posted items BUT with the constraint of a maximum of 3 …
7
votes
5answers
1k views
Hierarchical Queries in SQL Server 2005
Way back when I was working in an Oracle shop I took the CONNECT_BY for granted. Now I'm stuck working with SQL Server 2005 and have some nasty object hierarchies. Specifically, we have a self …
7
votes
10answers
1k views
How do I return random numbers as a column in SQL Server 2005?
I'm running a SQL query on SQL Server 2005, and in addition to 2 columns being queried from the database, I'd also like to return 1 column of random numbers along with them. I tried this:
select …
6
votes
5answers
206 views
SQL query to calculate part of visit duration from log table
Hello,
I have a table which logs the userid, course, sessionid and requestdate each time a webpage is loaded.
I want to calcuate the duration per userid for a given courseid.
It is problematic to do …
6
votes
4answers
118 views
Where should database queries live?
Should queries live inside the classes that need the data? Should queries live in stored procedures in the database so that they are reusable?
In the first situation, changing your queries won't …
