0
votes
1answer
106 views

SQL saving to a Temporary table is not working

i have the following sql query SELECT P.catalogid, Sum(numitems) numitems, Sum(ignoreditems) ignoreditems, P.supplierid, P.cname, P.cprice, ...
0
votes
2answers
103 views

How to select available date slice

I am trying to make a simple reservation system. I have a table called reservation that holds reservation time, and id of the customer who reserved it (see below for schema). And I have another table ...
0
votes
1answer
53 views

clustered table query in mysql

I have a table in my mysql database which has a column score and a column cluster. score is float and cluster may be NULL or integer. NULL means the row belongs to no cluster, an integer means it ...
1
vote
2answers
2k views

Full Join on two temporary tables not returning all results SQL Server

UPDATE: I've included complete code that can be pasted into SSRS, to show the results. We report on lots of date-centric information and have to produce reports from it. Some of the source data isn't ...
1
vote
1answer
836 views

Why does this MySQL query work in phpmyadmin but doesn't return anything in my php script?

I have tried the following query in phpmyadmin and it returns the correct results, but when I try passing the result to a variable in php that variable is essentially empty (i.e., when I try using it ...
1
vote
2answers
955 views

Multiple Joins on Temporary Table OR Subquery in SQL 2008

I have the following SQL which gets a season for each day in a range of dates, then groups each season by start and end date with number of nights. What it does is not important but my question is ...
0
votes
2answers
1k views

TSQL - How to join 1..* from multiple tables in one resultset?

A location table record has two address id's - mailing and business addressID that refer to an address table. Thus, the address table will contain up to two records for a given addressID. Given a ...
3
votes
4answers
1k views

Speeding up temp table joins in SQL Server

I have 2 temp tables #temp1 and #temp. Both have a key and date columns. Both have around 25k rows. And I'm left joining them on the basis of the key and date which are unique on all rows. It's taking ...
3
votes
2answers
4k views

Serious MySQL Performance Issue (Joins, Temporary Table, Filesort…)

I've got a users table and a votes table. The votes table stores votes toward other users. And for better or worse, a single row in the votes table, stores the votes in both directions between the two ...