active questions tagged mysql-query - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T12:21:10Zhttp://stackoverflow.com/feeds/tag/mysql-queryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1824336/mysql-sort-by-calculated-value-of-2-rows1MySQL sort by calculated value of 2 rowsRod Boev2009-12-01T06:22:57Z2009-12-01T06:58:42Z
<p>I'm trying to create a MySQL statement that will sort by a value calculated within the statement itself. My tables look like this:</p>
<pre><code>posts
+----+-----------+--------------+
| ID | post_type | post_content |
+----+-----------+--------------+
| 1 | post | Hello |
| 2 | post | world |
+----+-----------+--------------+
postmeta
+---------+----------+------------+
| post_id | meta_key | meta_value |
+---------+----------+------------+
| 1 | price | 50 |
| 1 | retail | 100 |
| 2 | price | 60 |
| 2 | retail | 90 |
+---------+----------+------------+
</code></pre>
<p>I'm trying to calculate a value called savings (<code>.5</code> for <code>ID=1</code>, <code>.3</code> for <code>ID=2</code>) then sort by it. This is what I have so far but I'm not sure how to do a calculation across 2 rows (everything I found is about calculating between columns).</p>
<pre><code>SELECT wposts.*
FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
WHERE wposts.ID = wpostmeta.post_id
AND wpostmeta.meta_key = 'Price'
AND wposts.post_type = 'post'
ORDER BY wpostmeta.meta_value DESC
</code></pre>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1822204/mysql-decimal10-2-increase-by-100MySQL decimal(10,2) Increase By 10%mediaslave2009-11-30T20:25:04Z2009-11-30T20:28:39Z
<p>I have a column with data type decimal(10,2).</p>
<p>I want to increase all of the current values by 10%.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1135627/mysql-select-accumulated-column2MySQL select "accumulated" columnMarquis Wang2009-07-16T05:51:54Z2009-11-30T14:16:11Z
<p>I'm not sure what to call this besides an "accumulated" column.</p>
<p>I have a MySQL table with a column that looks like</p>
<pre><code>+---+
|val|
+---+
| 1 |
| 4 |
| 6 |
| 3 |
| 2 |
| 5 |
+---+
</code></pre>
<p>I want to do a query so that I get this column along with another column which is the sum of all the rows from this column so far. In other words, the select would yield</p>
<pre><code>+---+----+
|val| sum|
+---+----+
| 1 | 1 |
| 4 | 5 |
| 6 | 11 |
| 3 | 14 |
| 2 | 16 |
| 5 | 21 |
+---+----+
</code></pre>
<p>Does anyone know how I would do this, and whether you can do this in MySQL?</p>
http://stackoverflow.com/questions/1819530/mysql-select-in-two-tables0mysql select in two tablestirso2009-11-30T12:27:49Z2009-11-30T12:58:19Z
<p>hi to all</p>
<p>I have two tables and one reference table for the query. Any suggestion or help would greatly appreciated.</p>
<p>table1</p>
<pre><code>user_id username firstname lastname address
1 john867 John Smith caloocan
2 bill96 Bill Jones manila
</code></pre>
<p>table2</p>
<pre><code>user_name_id username firstname lastname address designation
1 jakelucas Jake Lucas caloocan employee
2 jadejones Jade Jones Quezon student
3 bong098 Bong Johnson pasig employee
</code></pre>
<p>reference table</p>
<pre><code>ref_id username friend_username
1 tirso bill96
2 tirso jadejones
2 tirso bong098
</code></pre>
<p>the output should like this</p>
<pre><code>user_id user_name_id username firstname lastname address designation
2 bill96 Bill Jones manila
2 jadejones Jade Jones Quezon student
3 bong098 Bong Johnson pasig employee
</code></pre>
http://stackoverflow.com/questions/1818094/how-to-get-affected-rows-in-previous-mysql-operation0How to get affected rows in previous MySQL operation?Steven2009-11-30T06:13:03Z2009-11-30T06:35:52Z
<p>mysql_affected_rows is to get number of affected rows in previous MySQL operation, but I want to get affected rows in previous MySQL operation.
For example:</p>
<pre><code>update mytable set status=2 where column3="a_variable";
</code></pre>
<p>Before this operation, status of some rows is already 2, and I want to get affected rows in previous MySQL operation, you can not get it by issuing a query of</p>
<pre><code>select * from mytable where status=2
</code></pre>
<p>So how to do this work?</p>
http://stackoverflow.com/questions/1796201/sub-query-optimization-talk-with-an-example-case1Sub-query Optimization Talk with an example casekatsuo112009-11-25T11:04:36Z2009-11-27T16:55:34Z
<p>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 one practical)</p>
<p><strong>Environment :</strong></p>
<p>I have a table that contains articles with a column 'type', and another table article_version that contain a date where an article is added in the DB, and a third table that contains all the article types along with types label and stuffs...</p>
<p>The 2 first tables are huge (800000+ fields and growing daily), the 3rd one is naturally small sized. The article tables have a lot of column, but we will only need 'ID' and 'type' in articles and 'dateAdded' in article_version to simplify things...</p>
<p><strong>What I want to do :</strong></p>
<p>A Query that, for a specified 'dateAdded', returns the number of articles for each types (there is ~ 50 types to scan).
What was already in place is 50 separate count, one for each document types oO ( not efficient, long(~ 5sec in general), ).</p>
<p>I wanted to do it all in one query and I came up with that :</p>
<pre><code>SELECT type,
(SELECT COUNT(DISTINCT articles.ID)
FROM articles
INNER JOIN article_version
ON article_version.ARTI_ID = legi_arti.ID
WHERE type = td.NEW_ID
AND dateAdded = '2009-01-01 00:00:00') AS nbrArti
FROM type_document td
WHERE td.NEW_ID != ''
GROUP BY td.NEW_ID;
</code></pre>
<p>The external select (type_document) allow me to get the 55 types of documents I need.
The sub-Query is counting the articles for each type_document for the given date '2009-01-01'.</p>
<p>A common result is like :</p>
<pre>
* type * nbrArti *
*************************
* 123456 * 23 *
* 789456 * 5 *
* 16578 * 98 *
* .... * .... *
* .... * .... *
*************************
</pre>
<p>This query get the job done, but the join in the sub-query is making this extremely slow, The reason, if I'm right, is that a join is made by the server for each types, so 50+ times, this solution is even more slower than doing the 50 queries independently for each types, awesome :/</p>
<p><strong>A Solution</strong></p>
<p>I came up with a solution myself that drastically improve the performance with the same result, I just created a view corresponding to the subQuery, making the join on ids for each types... And Boom, it's f.a.s.t.</p>
<p>I think, correct me if I'm wrong, that the reason is the server only runs the JOIN statement once.</p>
<p>This solution is ~5 time faster than the solution that was already there, and ~20 times faster than my first attempt. Sweet</p>
<p><strong>Questions / thoughts</strong></p>
<ul>
<li>With yet another view, I'll now need to check if I don't loose more than win when documents get inserted...</li>
<li>Is there a way to improve the original Query, by getting the JOIN statement out of the sub-query? (And getting rid of the view)</li>
<li>Any other tips/thoughts? (In Server Optimizing for example...)</li>
</ul>
<p><hr></p>
<p>Apologies for my approximating English, it'is not my primary language.</p>
http://stackoverflow.com/questions/1779428/query-causes-mysql-server-to-go-away1Query causes mysql server to go awayseengee2009-11-22T17:56:58Z2009-11-27T11:50:54Z
<p>We have an application that has been deployed to 50+ websites. Across these sites we have noticed a piece of strange behaviour, we have now tracked this to one specific query. Very occasionally, once or twice a day usually, one of our debugging scripts reports</p>
<pre><code>2006 : MySQL server has gone away
</code></pre>
<p>I know there are a number of reasons this error can be thrown but the thing that is most strange is that every single time it is thrown it happens from the same SQL query being run. There is nothing strange or complex about this query, it looks like this:</p>
<pre><code>SELECT `advert_only` FROM `products` WHERE `id` = '6197'
</code></pre>
<p>This query must run tens of thousands of times a day, for various different product IDs so it certainly doesnt fail each time. It fails randomly on seemingly random sites across our 4 servers. There is seemingly no commonality, one small thing we have noticed is that it sometimes will happen on 2 or 3 page loads in a row for 1 specific person as we also track the IP of the person it has happened to.</p>
<p>This is on CentOS 5 servers running MySQL 5.0.81</p>
http://stackoverflow.com/questions/1807691/mysql-change-number-in-column0Mysql change number in columnandrew2009-11-27T09:36:52Z2009-11-27T09:41:59Z
<p>Here is an easy question for someone. When using mysql, how do you increase or decrease the number in a particular cell by a specified amount with a single query. For example i have a product table with 5 x product a. I sell 1 item and i want to update the field. I want to do it with one query, not get the number add to it and then update(I know how to do that)
Thanks
Andrew</p>
http://stackoverflow.com/questions/1807414/force-implied-and-instead-of-implied-or-in-mysql-boolean-match0Force "implied AND" instead of "implied OR" in mysql boolean match?unknown (yahoo)2009-11-27T08:28:13Z2009-11-27T08:59:44Z
<p>In mysql boolean match, if no operators are present, OR is implied. If you want AND, you need to add + to each keywords.</p>
<p>So query "word1 word2" is equal to "word1 OR word2", "+word1 +word2" is equal to "word1 AND word2"</p>
<p>I don't want users to have to enter + before each keyword, what are my options?</p>
<p>Suggested option 1: Is there something in my.conf I can change to set the defaults (I didn't find anything)</p>
<p>Suggested option 2: parse the query and manually add + to each word. Any simple code for this you can share? </p>
<p>The problem with this is if the user adds "quotes" or operators (+-*<>) etc. it breaks my parsing code. </p>
http://stackoverflow.com/questions/1802947/how-do-i-remove-slashes-during-a-select-statement0How do I remove slashes during a select statementEmma2009-11-26T10:44:27Z2009-11-26T10:53:49Z
<p>Please I am new. I am performing an insert select and I want to remove the slashes in a particular field say field b at the select portion of the query.
eg. insert into mytable(a,b,c) select a, stripslashes(b),c from mysecondtable;</p>
<p>Please help.</p>
http://stackoverflow.com/questions/1801970/does-hibernate-support-the-limit-statement-in-mysql1Does HIBERNATE support the limit statement in MySql??Richie2009-11-26T06:57:31Z2009-11-26T07:09:04Z
<p>I am working on a project which uses Java,MySql,Struts2 MVC and Hibernate. I tried using limit statement in hql query but its not working properly.</p>
<pre><code>Select t from table1 t where t.column1 = :someVal limit 0,5
</code></pre>
<p>EDIT: I am using this as a namedQuery and calling this namedQuery using JPA Template</p>
<p>This works correctly in MySql but when I ran this as a hql query this returns all records without regard to limit statement. Has anyone faced the same problem?? Any help appreciated!!</p>
<p>Regards, RDJ</p>
http://stackoverflow.com/questions/1799205/how-to-create-mysql-query-for-this-criteria1how to create mysql query for this criteria?harshit2009-11-25T18:58:46Z2009-11-25T19:07:18Z
<p>Hi,</p>
<p>I have to write an query something like this</p>
<pre><code>select * from table where title like '% select from tableb %'
</code></pre>
<p>this <strong>select from tableb</strong> is a query and not a string</p>
http://stackoverflow.com/questions/1793776/how-do-i-increase-relevance-value-in-an-advanced-mysql-query0How do I increase Relevance value in an advanced MySQL query?morgant2009-11-24T23:49:00Z2009-11-25T16:20:17Z
<p>I've got a MySQL query similar to the following:</p>
<pre><code>SELECT *, MATCH (`Description`) AGAINST ('+ipod +touch ' IN BOOLEAN MODE) * 8 + MATCH(`Description`) AGAINST ('ipod touch' IN BOOLEAN MODE) AS Relevance
FROM products WHERE ( MATCH (`Description`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) OR MATCH(`LongDescription`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) )
HAVING Relevance > 1
ORDER BY Relevance DESC
</code></pre>
<p>Now, I've made the query more advanced by also searching for UPC:</p>
<pre><code>SELECT *, MATCH (`Description`) AGAINST ('+ipod +touch ' IN BOOLEAN MODE) * 8 + MATCH(`Description`) AGAINST ('ipod touch' IN BOOLEAN MODE) + `UPC` = '123456789012' * 16 AS Relevance
FROM products WHERE ( MATCH (`Description`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) OR MATCH(`LongDescription`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) ) AND `UPC` = '123456789012'
HAVING Relevance > 1
ORDER BY Relevance DESC
</code></pre>
<p>That'll return results, but the fact that I had a successful match on the UPC does not increase the value of <code>Relevance</code>. Can I only do that kind of calculation w/full text searches like MATCH() AGAINST()?</p>
<p><strong>Clarification:</strong> Okay, so my real question is, why does the following not have a Relevance >= 16?</p>
<pre><code>SELECT `UPC`, `UPC` = '123456789012' * 16 AS Relevance FROM products WHERE `UPC` = '123456789012' HAVING Relevance > 1 ORDER BY Relevance DESC
</code></pre>
http://stackoverflow.com/questions/1796753/query-from-to-date-with-php-in-mysql0Query from to date with php in mysqlAudunfr2009-11-25T12:57:37Z2009-11-25T13:14:37Z
<p>Hello.</p>
<p>I have a date field in a mysql table formatted like this: Y-m-d.</p>
<p>I want to export every post that has a date between $fromDate and all the way to $toDate
I am sure its easy but now i am totaly blocked from ideas.</p>
<p>I am using codeigniter if that helps.</p>
<p>Best Regards
Audun</p>
http://stackoverflow.com/questions/1793387/help-with-mysql-query2Help with MySQL QueryJim Fell2009-11-24T22:32:06Z2009-11-24T23:14:26Z
<p>Hello. I have two tables in my database, and I would like to retreive information from both of them without having to do two queries. Basically, the user_ID(s) retreived from the tasks table needs to be used to get those respective user(s) names from the users table. This is what I have so far, but the query is returning false:</p>
<pre><code>SELECT t.user_id, t.nursery_ss, t.nursery_ws, t.greeter, t.date
u.user_first_name, u.user_last_name
FROM tasks_tbl AS t
INNER JOIN users_tbl AS u ON t.user_id = u.user_id
WHERE t.date = '2009-11-29'
</code></pre>
<p>Any suggestions would be appreciated. Thanks.</p>
http://stackoverflow.com/questions/1759916/i-need-help-with-a-mysql-query0I need help with a MySQL query.Kevin2009-11-18T23:41:02Z2009-11-24T19:21:39Z
<p>Ok I have a table in my mysql query browser like shown below:</p>
<pre><code>NAME: Jobs:
Kate Contractor
John Janitor
Bob Writer
Don Waitress
</code></pre>
<p>Let's say I want replace the job of Kate to artist. how would I do this as a MySQL Query. I know it involves the INSERT INTO thingy, but I'm not really sure.</p>
http://stackoverflow.com/questions/1786350/is-it-possible-to-create-mutiple-mysql-queries-within-the-same-table1Is it possible to create mutiple MySQL queries within the same table?Ole Media2009-11-23T22:01:34Z2009-11-24T18:24:40Z
<p>Is it possible to make multiple queries at once within the same query?</p>
<p>Here is an example of what I'm trying to do. </p>
<p>We have the following table:</p>
<pre><code>| userid | price | stock | description |
----------------------------------------
1 10.00 5 some text
2 25.00 2 some text
3 15.00 3 some text
4 35.00 2 some text
5 30.00 4 some text
</code></pre>
<p>The queries that I'm trying to do are: </p>
<ol>
<li>the MIN and MAX price group by description</li>
<li>the price set by userid 2</li>
<li>Stock and price of the first three results only without grouping</li>
</ol>
<p>So the HTML table will look like this:</p>
<pre><code>description | Min_Price | Max_Price | Price Set by userid 2 | 1st Price | 1st Stock | 2nd Price | 2nd Stock | 3rd Price | 3rd Stock
</code></pre>
http://stackoverflow.com/questions/1778865/simple-query-takes-15-30-seconds3Simple query takes 15-30 secondselmonty2009-11-22T14:36:25Z2009-11-24T01:56:56Z
<p>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 runs take less than a second (I expect some caching is involved). I am trying to determine why the first time takes so long.</p>
<p>Here's the query:</p>
<pre><code>SELECT DISTINCT ID,List,`From`,Subject, UNIX_TIMESTAMP(MsgDate) AS FmtDate
FROM messages
WHERE List='general'
ORDER BY MsgDate
LIMIT 17290,20;
</code></pre>
<p>MySQL version: 4.0.26-log</p>
<p>Here's the table:</p>
<pre><code>messages CREATE TABLE `messages` (
`ID` int(10) unsigned NOT NULL auto_increment,
`List` varchar(10) NOT NULL default '',
`MessageId` varchar(128) NOT NULL default '',
`From` varchar(128) NOT NULL default '',
`Subject` varchar(128) NOT NULL default '',
`MsgDate` datetime NOT NULL default '0000-00-00 00:00:00',
`TextBody` longtext NOT NULL,
`HtmlBody` longtext NOT NULL,
`Headers` text NOT NULL,
`UserID` int(10) unsigned default NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `List` (`List`,`MsgDate`,`MessageId`),
KEY `From` (`From`),
KEY `UserID` (`UserID`,`List`,`MsgDate`),
KEY `MsgDate` (`MsgDate`),
KEY `ListOnly` (`List`)
) TYPE=MyISAM ROW_FORMAT=DYNAMIC
</code></pre>
<p>Here's the explain:</p>
<pre><code>table type possible_keys key key_len ref rows Extra
------ ------ ------------- -------- ------- ------ ------ --------------------------------------------
m ref List,ListOnly ListOnly 10 const 18002 Using where; Using temporary; Using filesort
</code></pre>
<p>Why is it using a filesort when I have indexes on all the relevant columns? I added the ListOnly index just to see if it would help. I had originally thought that the List index would handle both the list selection and the sorting on MsgDate, but it didn't. Now that I added the ListOnly index, that's the one it uses, but it still does a filesort on MsgDate, which is what I suspect is taking so long.</p>
<p>I tried using FORCE INDEX as follows:</p>
<pre><code>SELECT DISTINCT ID,List,`From`,Subject, UNIX_TIMESTAMP(MsgDate) AS FmtDate
FROM messages
FORCE INDEX (List)
WHERE List='general'
ORDER BY MsgDate
LIMIT 17290,20;
</code></pre>
<p>This does seem to force MySQL to use the index, but it doesn't speed up the query at all.</p>
<p>Here's the explain for this query:</p>
<pre><code>table type possible_keys key key_len ref rows Extra
------ ------ ------------- ------ ------- ------ ------ ----------------------------
m ref List List 10 const 18002 Using where; Using temporary
</code></pre>
<p><strong>UPDATES:</strong></p>
<p>I removed DISTINCT from the query. It didn't help performance at all.</p>
<p>I removed the UNIX_TIMESTAMP call. It also didn't affect performance.</p>
<p>I made a special case in my PHP code so that if I detect the user is looking at the last page of results, I add a WHERE clause that returns only the last 7 days of results: </p>
<pre><code>SELECT m.ID,List,From,Subject,MsgDate
FROM messages
WHERE MsgDate>='2009-11-15'
ORDER BY MsgDate DESC
LIMIT 20
</code></pre>
<p>This is a lot faster. However, as soon as I navigate to another page of results, it must use the old SQL and takes a very long time to execute. I can't think of a practical, realistic way to do this for all pages. Also, doing this special case makes my PHP code more complex.</p>
<p>Strangely, only the first time the original query is run takes a long time. Subsequent runs of either the same query or a query showing a different page of results (i.e., only the LIMIT clause changes) are very fast. The query slows down again if it has not been run for about 5 minutes.</p>
<p><strong>SOLUTION:</strong></p>
<p>The best solution I came up with is based on Jason Orendorff and Juliet's idea.</p>
<p>First, I determine if the current page is closer to the beginning or end of the total number of pages. If it's closer to the end, I use ORDER BY MsgDate DESC, apply an appropriate limit, then reverse the order of the returned records.</p>
<p>This makes retrieving pages close to the beginning or end of the resultset much faster (first time now takes 4-5 seconds instead of 15-30). If the user wants to navigate to a page near the middle (currently around the 430th page), then the speed might drop back down. But that would be a rare case.</p>
<p>So while there seems to be no perfect solution, this is much better than it was for most cases.</p>
<p>Thank you, Jason and Juliet.</p>
http://stackoverflow.com/questions/1786963/is-there-a-way-to-transfer-info-from-one-database-into-another-database0Is there a way to transfer info from one database into another database?Levi2009-11-24T00:06:34Z2009-11-24T00:27:20Z
<p>I was wondering today if it was possible to transfer data from one database to another with one query. Say I have two tables:</p>
<pre><code>CREATE TABLE `Table_One` (
`ID` int(11) NOT NULL auto_increment,
`Type_ID` int(11) NOT NULL,
`Title` varchar(255) NOT NULL,
`Date` varchar(100) NOT NULL,
`Address` varchar(100) NOT NULL,
`Town` varchar(100) NOT NULL,
`Desc` longtext NOT NULL,
`Inserted` varchar(100) NOT NULL,
`Updated` varchar(100) NOT NULL,
`User_ID` int(11) NOT NULL,
`Pending` varchar(255) NOT NULL default '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=80 DEFAULT CHARSET=latin1;
</code></pre>
<p>and </p>
<pre><code>CREATE TABLE `Table_Two` (
`ID` int(11) NOT NULL auto_increment,
`Title` varchar(255) NOT NULL,
`Town` varchar(255) NOT NULL,
`Desc` varchar(255) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
</code></pre>
<p>I was thinking of doing something along the lines of </p>
<pre><code>INSERT INTO Table_Two (0,SELECT Title, Town, Desc FROM Table_One)
</code></pre>
<p>This didn't seem right though because how would Table_Two know Table_One was in another database? Can I use the schema file to make it a more specific query? Is this even possible to do without using a server side language?</p>
<p>Thanks,<br />
Levi</p>
http://stackoverflow.com/questions/1785433/mysqlfetchassoc-is-losing-fields-after-assigning-it-to-a-array-variable0Mysql_fetch_assoc is losing fields after assigning it to a array variable.mitch2009-11-23T19:33:39Z2009-11-23T21:59:27Z
<p>I have a simple function that calls a select query and populates an array with the results:</p>
<pre><code>$result = mysql_query($query);
for ($n=0; $n < mysql_num_rows($result); $n++)
{
$row = mysql_fetch_assoc($result);
$output[$n] = $row;
}
return $output;
</code></pre>
<p>My table has about 60+ fields and <code>mysql_fetch_assoc</code> returns all of them. However when assigning a row of data to the <code>$output</code> array, I lose more than half of the fields.</p>
http://stackoverflow.com/questions/1782399/complex-mysql-query-between-two-tables1Complex MySQL query between two tablesBruno Mello2009-11-23T10:58:25Z2009-11-23T12:38:48Z
<p>Hi,</p>
<p>I've a real complex query here, at least for me.</p>
<p>Here's a table with car dates releases (where model_key = 320D):</p>
<pre><code>+------------+-----------+
| date_key | model_key |
+------------+-----------+
| 2003-08-13 | 320D |
| 2005-11-12 | 320D |
| 2007-02-11 | 320D |
+------------+----------+
</code></pre>
<p>Then I have a table with daily purchases (where model_key = 320D):</p>
<pre><code>+------------+-----------+-----------+
| date_key | model_key | sal_quant |
+------------+-----------+ ----------+
| 2003-08-13 | 320D | 0 |
| 2003-08-14 | 320D | 1 |
| 2003-08-15 | 320D | 2 |
| 2003-08-16 | 320D | 0 |
...
| 2005-11-12 | 320D | 2 |
| 2005-11-13 | 320D | 0 |
| 2005-11-14 | 320D | 4 |
| 2005-11-15 | 320D | 3 |
...
| 2007-02-11 | 320D | 1 |
| 2007-02-12 | 320D | 0 |
| 2007-02-13 | 320D | 0 |
| 2007-02-14 | 320D | 0 |
...
+------------+-----------+-----------|
</code></pre>
<p>I want to know the sum of car sales by day after each release during N days.</p>
<p>I want a table like (assuming 4 days analysis):</p>
<pre><code>+-----------------+
| sum(sal_quant) |
+-----------------+
| 3 |
| 1 |
| 6 |
| 3 |
+-----------------+
</code></pre>
<p>Which means, in the first day of car release, 3 BMW 320D were sold, in the second day, just one,... an so on.</p>
<p>Now I have the following query:</p>
<pre><code>SELECT SUM(sal_quant)
FROM daily_sales
WHERE model_key='320D'
AND date_key IN (
SELECT date_key FROM car_release_dates WHERE model_key='320D')
</code></pre>
<p>But this only gives me the sum for the first release day. How can I get the next days?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1782557/retrieve-multiple-records-based-on-multiple-and-where-conditions0Retrieve multiple records based on multiple AND WHERE conditionsAron Rotteveel2009-11-23T11:27:12Z2009-11-23T12:35:00Z
<p>I am currently struggling with a query that needs to retrieve multiple records from my table based on multiple WHERE clauses. Each WHERE clause contains two conditions.</p>
<p><strong>Table layout:</strong></p>
<pre><code>+--------------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------+---------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| entity_id | int(11) | YES | MUL | NULL | |
| attribute_id | int(11) | YES | | NULL | |
| value | int(11) | YES | | NULL | |
+--------------+---------+------+-----+---------+----------------+
</code></pre>
<p><strong>What I need to retrieve:</strong></p>
<p>One or more records matching an array of attribute_id's with corresponding values. In this case, I have an array with the following structure:</p>
<pre><code>array(
attribute => value,
attribute => value,
attribute => value
)
</code></pre>
<p><strong>The problem:</strong></p>
<p>I cannot cycle through the array and create WHERE clauses for this query, since each WHERE condition would automatically negate the other. All attribute/value pairs should be matched.</p>
<p>I almost thought I had the solution with this query:</p>
<pre><code>SELECT `client_entity_int`. *
FROM `client_entity_int`
WHERE (attribute_id IN (1, 3))
HAVING (value IN ('0', '3'))
</code></pre>
<p>... but obviously, this would retrieve both values for both attributes, where I just need attribute 1 to be 0 and attribute 3 to be 3.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/1762018/sql-group-by-issue7SQL "GROUP BY" issueJames2009-11-19T09:32:09Z2009-11-23T06:20:46Z
<p>Hi,</p>
<p>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 ProductPrice table that consists of 3 fields, pid, date and price. pid and date form the primary key for the table. Here's an example of what the table looks like:</p>
<pre><code>pid date price
1 1/1/09 50
1 2/1/09 55
1 3/1/09 54
</code></pre>
<p>Using <code>SELECT</code> and <code>GROUP BY</code> to find the latest price of each product, I came up with:</p>
<pre><code>SELECT pid, price, max(date) FROM ProductPrice GROUP BY pid
</code></pre>
<p>The date and pid returned were accurate. I received exactly 1 entry for every unique pid and the date that accompanied it was the latest date for that pid. However, what came as a surprise was the price returned. It returned the price of the first row matching the pid, which in this case was 50.</p>
<p>After reworking my statement, I came up with this:</p>
<pre><code>SELECT pp.pid, pp.price, pp.date FROM ProductPrice AS pp
INNER JOIN (
SELECT pid AS lastPid, max(date) AS lastDate FROM ProductPrice GROUP BY pid
) AS m
ON pp.pid = lastPid AND pp.date = lastDate
</code></pre>
<p>While the reworked statement now yields the correct price(54), it seems incredible that such a simple sounding query would require an inner join to execute. My question is, is my second statement the easiest way to accomplish what I need to do? Or am I missing something here? Thanks in advance!</p>
<p>James</p>
http://stackoverflow.com/questions/1781177/what-is-wrong-in-my-mysql-query0What is wrong in my MYSQL Query?sathish2009-11-23T05:00:41Z2009-11-23T05:26:44Z
<pre><code>SELECT
( SELECT
SUM(IF(status = 'Active', 1, 0)) AS `univ_active`,
SUM(IF(status = 'Inactive', 1, 0)) AS 'univ_inactive',
Count(*)
FROM online_university
)
AS tot_university,
( SELECT
SUM(IF(status = 'Active', 1,0)) AS `user_active`,
SUM(IF(status = 'Inactive', 1,0)) AS 'user_inactive'
Count(*)
FROM online_register_user)
AS tot_users
</code></pre>
<p>Result must be </p>
<pre><code>univ_active=4 univ_inactive=2 tot_university=6
user_active=10 user_inactive=3 tot_users = 13
</code></pre>
<p>How can i get this? The above query returning ERROR: <strong>Operand should contain 1 column(s)</strong></p>
<p>This to prepare report for a project from all tables returning Active, Inactive, Total records from the table. If this method is wrong then what shall i user? Any suggestion. </p>
http://stackoverflow.com/questions/1780083/how-to-change-the-storage-engine-type-on-mysql0How to change the storage engine type on MySQL?Andrew2009-11-22T21:38:01Z2009-11-22T21:47:56Z
<p>I would like to use InnoDB as the storage engine on all my tables and databases. Is there a command I can run to change the type of my current tables to use InnoDB instead of MyISAM?</p>
<p>Also, is there a way to set this as the default so I don't have to do this again?</p>
http://stackoverflow.com/questions/1777306/mysql-error-1247-reference-karma-not-supported-reference-to-group-function0Mysql Error: #1247 - Reference 'karma' not supported (reference to group function)TheLizardKing2009-11-22T00:30:44Z2009-11-22T03:00:23Z
<p>Here is my mysql query below. Through many helpful questions and comments I am almost at the end of my journey. The idea behind this query is a user submits a link, the application inserts two rows, one into links and another into votes (a default vote, why wouldn't a user vote for their own submission?) Then every vote is just another row in the votes table with a either a <code>karma_up</code> or <code>karma_down</code> equaling 1 (soon to be changed to <code>karma_delta</code> to save on the extra column. I also have the popularity algorithm in there which seems to be b0rking my query. Running the below query warrants me this error.</p>
<pre><code>#1247 - Reference 'karma' not supported (reference to group function)
</code></pre>
<p>The whole point of the majority of this query is to get the karma</p>
<pre><code>SELECT links.*, (SUM(votes.karma_up) - SUM(votes.karma_down)) AS karma
FROM links, votes
WHERE links.id = votes.link_id
GROUP BY votes.link_id
ORDER BY (karma - 1) / POW((TIMESTAMPDIFF(HOUR, links.created, NOW()) + 2), 1.5) DESC
LIMIT 0, 100
</code></pre>
<p>Without the popularity algorithm at the <code>ORDER BY</code> part the query runs perfectly, adding the sum'ed up karma from the <code>votes</code> table and tacking on an extra column with it's value.</p>
http://stackoverflow.com/questions/1772927/php-query-single-line-from-database0PHP query single line from databasepoxin2009-11-20T20:05:59Z2009-11-20T21:21:34Z
<p>I'm having a problem echoing a single line from a sql query. I'm still pretty new at this but I can't figure it out at all.</p>
<p>I have a page titled "listing.php?id=7"</p>
<p>Inside the page is this script:</p>
<pre><code><?php
mysql_connect("localhost","user","pass");
mysql_select_db("table");
$query = "SELECT * FROM vehicles WHERE id='$id'";
$result = mysql_query($query);
while($r=mysql_fetch_array($result))
{
$year=$r["year"];
$make=$r["make"];
$model=$r["model"];
$miles=$r["miles"];
$pricepay=$r["pricepay"];
$pricecash=$r["pricecash"];
$transmission=$r["transmission"];
$color=$r["color"];
$vin=$r["vin"];
echo"$year $make $model $miles $pricepay $pricecash $transmission $color $vin<br />";
}
?>
</code></pre>
<p>The problem lies within "WHERE id='$id'". When I use a var, it displays nothing, but if I manually make it my ID number, example 7, it works fine. What's am I doing wrong?</p>
http://stackoverflow.com/questions/1765040/mysql-fetch-10-posts-each-w-vote-count-sorted-by-vote-count-limited-by-where0MYSQL fetch 10 posts, each w/ vote count, sorted by vote count, limited by where clause on postsnibblebot2009-11-19T17:22:20Z2009-11-20T18:44:24Z
<p>I want to fetch a set of Posts w/ vote count listed, sorted by vote count (e.g.) </p>
<pre><code>Post 1 - Post Body blah blah - Votes: 500
Post 2 - Post Body blah blah - Votes: 400
Post 3 - Post Body blah blah - Votes: 300
Post 4 - Post Body blah blah - Votes: 200
</code></pre>
<p>I have 2 tables: </p>
<p><strong>Posts</strong> - columns - <code>id</code>, <code>body</code>, <code>is_hidden</code><br>
<strong>Votes</strong> - columns - <code>id</code>, <code>post_id</code>, <code>vote_type_id</code></p>
<p>Here is the query I've tried:</p>
<pre><code>SELECT p.*, v.yes_count
FROM posts p
LEFT JOIN
(SELECT post_id, vote_type_id, COUNT(1) AS yes_count
FROM votes
WHERE (vote_type_id = 1)
GROUP BY post_id
ORDER BY yes_count DESC
LIMIT 0, 10) v
ON v.post_id = p.id
WHERE (p.is_hidden = 0)
ORDER BY yes_count DESC
LIMIT 0, 10
</code></pre>
<p><strong>Correctness:</strong> The above query <em>almost works</em>. The subselect is including <code>votes</code> for <code>posts</code> that have <code>is_hidden = 1</code>, so when I left join it to <code>posts</code>, if a hidden post is in the top 10 (ranked by votes), I can end up with records with NULL on the <code>yes_count</code> field.</p>
<p><strong>Performance:</strong> I have ~50k posts and ~500k votes. On my dev machine, the above query is running in .4sec. I'd like to stay at or below this execution time.</p>
<p><strong>Indexes:</strong> I have an index on the Votes table that covers the fields: <code>vote_type_id</code> and <code>post_id</code></p>
<p><strong>EXPLAIN</strong> </p>
<pre><code>id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY p ALL NULL NULL NULL NULL 45985 Using where; Using temporary; Using filesort
1 PRIMARY <derived2> ALL NULL NULL NULL NULL 10
2 DERIVED votes ref VotingPost VotingPost 4 319881 Using where; Using index; Using temporary; Using filesort
</code></pre>
http://stackoverflow.com/questions/1771473/trouble-creating-a-sql-statement-select-statement-reference-same-table-twice1trouble creating a sql statement select statement reference same table twicepayling2009-11-20T16:04:02Z2009-11-20T16:08:13Z
<p>Ok, here is setup. Note the code below is SIMPLIFIED version.</p>
<p>PHP 5.2</p>
<p>ENGINE: MyISAM</p>
<pre><code>table quotes q
table users u
FROM quotes q LEFT JOIN users u
ON q.qid = u.uid
</code></pre>
<p>Soo... the quotes table references a user (from users table) (the owner of quote)
but quotes table ALSO has a field called createdby (the user who created the quote...) </p>
<p>I'm trying to display quote #, the owners full name, and the created by full name.</p>
<p>I can display the quote #, owners full name and created by USERNAME (i want full name) using the above code.</p>
<p>I tried adding</p>
<pre><code>ON q.qid = u.uid + --> AND q.createdBy = u.uid
</code></pre>
<p>But that didn't seem to work and even if it did I wouldn't know how to reference the correct full name (owner or createdby).</p>
http://stackoverflow.com/questions/1759250/how-do-i-convert-a-mysql-function-result-to-tinyint11How do I convert a MySQL function result to tinyint(1)Kasey Speakman2009-11-18T21:37:48Z2009-11-20T15:39:40Z
<p>Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everything is golden. However, when you use built-in MySQL v5.0 functions like:</p>
<pre><code>SELECT (3 BETWEEN 2 AND 4) AS oddly_not_boolean;
</code></pre>
<p>The actual return type from the database registers this field as INT or BIGINT, which Connector/.NET obviously doesn't convert to bool. MySQL CAST and CONVERT do not allow casting to TINYINT(1).</p>
<p>I've even gone so far as to try a user function to do this, but this doesn't work either:</p>
<pre><code>CREATE FUNCTION `to_bool`(var_num BIGINT)
RETURNS TINYINT(1) RETURN var_num;
</code></pre>
<p>How do I convert an INT to a TINYINT(1) in a query in MySQL?</p>
<p>EDIT: The above function DOES actually work to convert the value to a TINYINT(1), but my Connector/NET is just bugged and doesn't properly convert the values from functions.</p>
<p>UPDATE 2009-11-03: Updated my connector and it's still giving me back Int32. Further testing reveals that this is an <a href="http://bugs.mysql.com/bug.php?id=48889" rel="nofollow">InnoDB bug</a> in MySQL 5.0.x that only shows under specific circumstances.</p>