1
vote
5answers
77 views
How do I Create a Comma-Separated List using a SQL Query?
i have 3 tables called:
Applications (id, name)
Resources (id, name)
ApplicationsResources (id, app_id, resource_id)
i want to show on a gui a table of all resource names. in one cell in each …
1
vote
4answers
67 views
SQL Server Stored Procedure - ‘IF statement’ vs ‘Where criteria’
The question from quite a long time boiling in my head, that out of the following two stored procedures which one would perform better.
Proc 1
CREATE PROCEDURE GetEmployeeDetails @EmployeeId …
0
votes
2answers
33 views
designing mySql index and primary keying for efficiency
I have a mid-size collection of records --about 20 million -- that I need to load into mySQL for use in data analysis. These happen to be records of people visiting places. They are uniquely …
6
votes
17answers
342 views
SQL: Inner joining two massive tables
Good afternoon,
I have two massive tables with about 100 million records each and I'm afraid I needed to perform an Inner Join between the two. Now, both tables are very simple; here's the …
1
vote
1answer
26 views
Sub-query Optimization Talk with an example case
Hello guys,
I need advises and want to share my experience about Query Optimization. This week, I found myself stuck in an interesting dilemma.
I'm a novice person in mySql (2 years theory, less than …
2
votes
2answers
113 views
Join won’t do it, and sub query sucks, then what?
Hello all,
first of all, sorry for the non descriptive title, I'm just too rushed so I couldn't come up with a better one.
Second:
I have a portion of my database the looks like the following …
0
votes
5answers
186 views
Tips for speeding up this code
Hiya,
Can anyone suggest tips or alterations to make this code cleaner and faster? This was the only way I could think of doing it on a Friday evening, but I'm sure there must be a more efficient …
0
votes
5answers
59 views
How to improve search speeds in this situation?
I have a search implemented on my site, it runs the following queries:
SELECT COUNT(mov_id) AS total_things
FROM content
WHERE con_status = 1 AND con_incomplete = 0 AND con_type = 1
…
0
votes
2answers
37 views
How to Detect Select n+1 problems in Linq to SQL?
What is the best way to detect Select n+1 problems if i am using linq to SQL, right now we are working on a project and it seem to be pretty slow to display some lists.
What is the best method to …
2
votes
6answers
44 views
Optimize SQL query for canceled orders
Here is a subset of my tables:
orders:
- order_id
- customer_id
order_products:
- order_id
- order_product_id (unique key)
- canceled
I want to select all orders (order_id) for a given …
2
votes
3answers
64 views
Count from a table, but stop counting at a certain number
Is there a way in MySQL to COUNT(*) from a table where if the number is greater than x, it will stop counting there? Basically, I only want to know if the number of records returned from a query is …
0
votes
3answers
86 views
SQL Query For Total Points Within Radius of a Location
I have a database table of all zipcodes in the US that includes city,state,latitude & longitude for each zipcode. I also have a database table of points that each have a latitude & longitude …
1
vote
5answers
109 views
Optimizing MySQL Query
We have a query that is currently killing our database and I know there has to be a way to optimize it. We have 3 tables:
items - table of items where each items has an associated object_id, length, …
0
votes
5answers
148 views
optimizing an sql query using inner join and order by
I'm trying to optimize the following query without success. Any idea where it could be indexed to prevent the temporary table and the filesort?
EXPLAIN SELECT SQL_NO_CACHE `groups`.*
FROM `groups`
…
0
votes
2answers
28 views
How to parse a mysql slow query log into something useful?
I have an extensive slow query log which was running for a few weeks. I would like to parse it, which would put the highest occurring queries at the top (with number of executions and average times of …
