Tagged Questions
1
vote
2answers
48 views
How to implement mySQL self-relationship?
How can I create a Message table such as this in mySQL where it stores messages and their responses?
0
votes
1answer
95 views
Mysql left join on self or similar
I have a query like this:
SELECT SUM(spend.price) AS total, WEEKDAY(spend.date) AS weekday
FROM spend
WHERE spend.date BETWEEN '2012-11-01' AND '2012-11-07'
GROUP BY WEEKDAY(spend.date) ;
Right now ...
0
votes
1answer
201 views
mysql SUM CASE self join
i need some help with this query
this is the actual result of my query
price received qty recieved price release qty release
10.30 10 0 0 ...
1
vote
2answers
164 views
How do you resolve ambiguous aliases in MySQL to the current table's definitions
I was wondering if MySQL has some kind of default alias for the current table you are building (like 'self' in SmallTalk or 'this' in Java). For instance:
SELECT
SUM(revenue) AS revenue,
SUM(units) ...
0
votes
2answers
760 views
Self Join SQL Query
a few days ago I asked for a solution to a SQL query i needed to work out, my data looks like:
meta_id post_id meta_key meta_value
269 4 _apais USA
270 4 _aciudad ...
0
votes
1answer
465 views
How do I self join on multiple values in mysql?
Specifically, I want to query word press posts based on N number of meta values which are in a key/value type of table.
I simply can't find a good example of a working query.
In plain English, the ...
0
votes
1answer
419 views
MYSQL - SELECT ALL FROM TABLE if
I have a (nice) mysql table built like this :
Fields Datas
id (pk) 1 2 3 4 5 6
master_id 1000 1000 1000 2000 2000 ...
5
votes
2answers
174 views
How to count similar interests in MySQL
I have 2 tables, 'interests' and 'users_interests'.
'users_interests' just has userid and interestid fields.
'interests just has an id and a name.
I simply need to find userid's who have more than ...
1
vote
1answer
273 views
How to get MYSQL to show Zero results when left joining to self? (eg: Monthly Stats)
I have a table with typical statistics on page view and emails. An email creates a row and page view creates a row...
I want to chart the page views and emails on a daily basis for the past 30 days ...