active questions tagged mysql - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T08:06:42Zhttp://stackoverflow.com/feeds/tag/mysqlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1880638/mysql-selection0Mysql SelectionQawe2009-12-10T12:23:32Z2009-12-18T08:00:18Z
<p>Hi good people once again</p>
<p>While busy traversing, iterating and manipulating my arrays from a mysql database i have stumbled on a problem, which i know you will be able to help me with - fellow geeks.</p>
<p>I have a COLUMN the contains city names and some cities appear several times on the COLUMN.</p>
<p>I'm using the following query to retrieve that data:</p>
<pre><code> $query = "SELECT cities from info_table WHERE store='kfc' ";
$result = mysql_query($query);
while($city = mysql_fetch_array($result){
$total_cities_array[]=$city[0];
}
</code></pre>
<p>the problem is that in $total_cities_array some cities are a entered several when i ony need a single storage for every city.
is there some php or mysql that i can use to fix this.
Thank you. </p>
http://stackoverflow.com/questions/1925726/postgresql-select-from-table-performance-vs-mysql-1Postgresql Select * from table performance vs MySqlRobert2009-12-18T01:22:23Z2009-12-18T07:55:52Z
<p>I have a MySQL database that I'm porting to PostgreSQL (because of GIS features).</p>
<p>Many of the tables have hundreds of thousands of rows, so I need to keep performance in mind.</p>
<p>My problem is that PostgreSQL seems abysmally slow...</p>
<p>For example, if I do a simple SELECT * FROM [table] on a particular table in the MySQL database, let's say one that has 113,000 rows, the query takes around 2 seconds to return the data.
In PostgreSQL, the exact same query on the same table takes almost 10 seconds.</p>
<p>Similarly, I have another table with less rows (88,000), and it's worse! MySQL takes 1.3 seconds, PostgreSQL takes 30 seconds!</p>
<p>Is this what I can expect from PostgreSQL, or is there something I can do to make it better?</p>
<p>My OS is XP, and I'm running a 2.7ghz dual code with 3gb ram.
The MySQL database is version 5.1, running stock standard.
The PostgreSQL database is version 8.4, and I have edited the configuration as follows:
shared_buffers = 128MB
effective_cache_size = 512MB</p>
<p>Thanks!</p>
<p>Here is the structure of the second table that has around 88,000 rows:</p>
<pre><code>CREATE TABLE nodelink
(
nodelinkid serial NOT NULL,
workid integer NOT NULL,
modifiedbyid integer,
tabulardatasetid integer,
fromnodeid integer,
tonodeid integer,
materialid integer,
componentsubtypeid integer,
crosssectionid integer,
"name" character varying(64) NOT NULL,
description character varying(256) NOT NULL,
modifiedbyname character varying(64) NOT NULL, -- Contains the values from the old engine's ModifiedBy field, since they don't link with any user
linkdiameter double precision NOT NULL DEFAULT 0, -- The diameter of the Link
height double precision NOT NULL,
width double precision NOT NULL,
length double precision NOT NULL,
roughness double precision NOT NULL,
upstreaminvert double precision NOT NULL,
upstreamloss double precision NOT NULL,
downstreaminvert double precision NOT NULL,
downstreamloss double precision NOT NULL,
averageloss double precision NOT NULL,
pressuremain double precision NOT NULL,
flowtogauge double precision NOT NULL,
cctvgrade double precision NOT NULL,
installdate timestamp without time zone NOT NULL,
whencreated timestamp without time zone NOT NULL,
whenmodified timestamp without time zone NOT NULL,
ismodelled boolean NOT NULL,
isopen boolean NOT NULL,
shapenative geometry,
shapewgs84 geometry,
CONSTRAINT nodelink_pk PRIMARY KEY (nodelinkid),
CONSTRAINT componentsubtype_nodelink_fk FOREIGN KEY (componentsubtypeid)
REFERENCES componentsubtype (componentsubtypeid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT crosssection_nodelink_fk FOREIGN KEY (crosssectionid)
REFERENCES crosssection (crosssectionid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT fromnode_nodelink_fk FOREIGN KEY (fromnodeid)
REFERENCES node (nodeid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT material_nodelink_fk FOREIGN KEY (materialid)
REFERENCES material (materialid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT tabulardataset_nodelink_fk FOREIGN KEY (tabulardatasetid)
REFERENCES tabulardataset (tabulardatasetid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT tonode_nodelink_fk FOREIGN KEY (tonodeid)
REFERENCES node (nodeid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT user_nodelink_fk FOREIGN KEY (modifiedbyid)
REFERENCES awtuser (userid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT work_modellink_fk FOREIGN KEY (workid)
REFERENCES "work" (workid) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION
)
WITH (
OIDS=FALSE
);
ALTER TABLE nodelink OWNER TO postgres;
COMMENT ON TABLE nodelink IS 'Contains all of the data that describes a line between any two nodes.';
COMMENT ON COLUMN nodelink.modifiedbyname IS 'Contains the values from the old engine''s ModifiedBy field, since they don''t link with any user';
COMMENT ON COLUMN nodelink.linkdiameter IS 'The diameter of the Link';
</code></pre>
http://stackoverflow.com/questions/1926748/efficient-classifieds-mysql-structure0Efficient Classifieds Mysql Structurejohnnietheblack2009-12-18T06:56:50Z2009-12-18T07:46:36Z
<p>I am restructuring a classifieds MySQL db where the different main sections are separated into separate tables. For example, sale items have their own table with unique ID's, jobs have their own table with unique ID's, personals have their own table as well.</p>
<p>These sections all share a few common characteristics:</p>
<p>-id<br>
-title<br>
-body<br>
-listing status<br>
-poster<br>
-reply email<br>
-posting date</p>
<p>But they each have some separate information required as well:</p>
<p>-each have different sets and trees of categories to choose from (which affect the structure needed to store them)<br>
-jobs need to store things like salary, start date, etc.<br>
-sale items need to store things like prices, obo, etc. </p>
<p>Therefore, is it a better practice to refactor the db while I can to a universal table to store ALL the general listing info regardless of section, and then task out customized data storage to small tables, or is it better to leave the current structure alone and leave the sections separated?</p>
http://stackoverflow.com/questions/1920777/character-encoding-problem0Character Encoding Problematif0892009-12-17T10:28:34Z2009-12-18T07:27:33Z
<p>I know this sounds really silly but what character encoding should I use for something that looks like this in UTF-8</p>
<p>�� Ã�¼Ã��Ã�½Ã�±Ã�¼Ã�Â</p>
<p>The website is in English. This is something user generated content which is stored in the database that is utf_general_ci and displayed on the screen . I just want to display it properly. What do I have to do ?</p>
<p>OK this is what the original text was something like</p>
<p>I αм iиvisibłє łiкє αiя---
I αм αs iмρøяŧαиŧ αs øxygєи---
I αм łiviиg iи ŧЋє wøяłd øƒ мy dяєαмz
I αм αłwαys ŧЋєяє ŧø Ћєłρ øŧЋєяz---
I αм busy buŧ иєvєя igиøяє αиy øиє
I αм ŧЋє øиє wЋø cαяєz---
I łøvє ŧø sєє øŧЋєя łαugЋiиg
I αм ŧЋє øиє wЋø bøяяøw øŧЋєяz søяяøw
I αм ŧЋє øиє wЋøz иαugЋŧy buŧ иicє
I αм łøsŧ iи мy ŧЋøugЋŧs---
I łøvє ŧø ŧαłк---
I łøvє ŧø sЋαяє---
I αм яєαdy ŧø gø αиy wЋєяє---
I łøvє ŧø ƒły buŧ døи’ŧ Ћαvє wiиgs—
I wαиŧ ŧøø ŧøucЋ ŧЋє sкy łiмiŧs---
I αм єvił buŧ иøŧ dєvił---
I иєvєя ƒøłłøw αиy ŧяєиd---
I αм ƒuиłøviиg---
suм ŧiмє łøvє ŧø bє αłøиє---
I łøvє ŧø łivє---</p>
http://stackoverflow.com/questions/1926823/character-encoding-problem0Character Encoding Problematif0892009-12-18T07:22:36Z2009-12-18T07:25:42Z
<p>Hi,</p>
<p>I need to save this onto database(mysql) and show it back. (my database is utf_general_ci)</p>
<p>I αм iиvisibłє łiкє αiя---
I αм αs iмρøяŧαиŧ αs øxygєи---
I αм łiviиg iи ŧЋє wøяłd øƒ мy dяєαмz
I αм αłwαys ŧЋєяє ŧø Ћєłρ øŧЋєяz---
I αм busy buŧ иєvєя igиøяє αиy øиє
I αм ŧЋє øиє wЋø cαяєz---
I łøvє ŧø sєє øŧЋєя łαugЋiиg
I αм ŧЋє øиє wЋø bøяяøw øŧЋєяz søяяøw
I αм ŧЋє øиє wЋøz иαugЋŧy buŧ иicє
I αм łøsŧ iи мy ŧЋøugЋŧs---
I łøvє ŧø ŧαłк---
I łøvє ŧø sЋαяє---
I αм яєαdy ŧø gø αиy wЋєяє---
I łøvє ŧø ƒły buŧ døи’ŧ Ћαvє wiиgs—
I wαиŧ ŧøø ŧøucЋ ŧЋє sкy łiмiŧs---
I αм єvił buŧ иøŧ dєvił---
I иєvєя ƒøłłøw αиy ŧяєиd---
I αм ƒuиłøviиg---
suм ŧiмє łøvє ŧø bє αłøиє---
I łøvє ŧø łivє---</p>
<p>However when the data is being saved and retrieved, this is what I get</p>
<p>â��â�¥�±LL à ¸£��������à ¸£â�¥â��
â�ï&iqu</p>
<p>Any help please? Is it something to change the collation of the database or some PHP functions that can handle this ?</p>
http://stackoverflow.com/questions/1926735/table-structure-some-columns-to-be-saved-as-a-single-text-type-field-with-json0Table structure: some "columns" to be saved as a single text-type field with json structure, alternative: separate table but concerned with performancemives2009-12-18T06:52:23Z2009-12-18T07:07:09Z
<p>Here the deal: I've got a table <code>Billing</code>, which is basically a receipt (for different types of transaction). The app has a feature that you can create new charges (well, all charges except for tax and other constants). Since there would be a dynamic number of charges, we decided to store the charges for a billing on a single text field with a json structure. So the <code>Charges</code> column contains stuff like this:</p>
<pre>
{"CrateFee":50,"DeliveryFee":90,"PackagingFee":20}
{"DeliveyFee":90,"ServiceCharge":200}
</pre>
<p>Our alternative would be to create a separate table for these charges, with this structure:</p>
<pre>
Charges
BillingId | ChargeName | ChargeValue
1 CrateFee 50
1 DeliveryFee 90
1 PackagingFee 20
2 DeliveryFee 90
2 ServiceCharge 200
</pre>
<p>But we decided to use the first one because if we use the second method, it will be populated by tens of thousands of rows in just a single day (estimate is about a thousand transactions in a day). I know we'll be limited with what we can do with the data if we use the first one, so I really want to push the separate table method. But I have no idea on scaling, optimizing, etc when it comes to databases, so I need some help with this. </p>
<p>So tell me, is it ok to use the second method? How about the performance hit? Are there other alternatives?</p>
http://stackoverflow.com/questions/1925482/jquery-ajax-post-on-document-ready1jQuery AJAX $_POST on document.ready?Dave Kiss2009-12-18T00:10:32Z2009-12-18T06:20:31Z
<p>I'm about a week into learning PHP, jQuery and AJAX and am picking up quickly. I'm building a new video website with a comment system that I need a little help on. The site shows a list of video thumbnails, and when the user clicks the thumbnail, jquery automatically changes the html on that page to show the correct video:</p>
<pre><code> $(".thumbnailcontainer img").click(function() {
var yt_vid = $(this).attr("id");
$("#youtube").fadeOut(300, function() {
//$("#content").append('<img src="img/design/icons/loading.gif" alt="Currently Loading" id="loading" class="loading" />');
$("#youtube").replaceWith('<object id="youtube" type="application/x-shockwave-flash" style="width:640px; height:385px; display:none;" data="http://www.youtube.com/v/' + yt_vid + '&hl=en_US&fs=1&hd=1"><param name="movie" value="http://www.youtube.com/v/' + yt_vid + '&hl=en_US&fs=1&hd=1" /><param wmode="transparent"><\/param><\/object>');
/*$("#loading").fadeOut(500, function() {
$(this).remove();
});*/
$('#youtube').fadeIn(1000);
});
</code></pre>
<p>(I temporarily commented out the loading icon because im'm trying to figure out how to display it on top of the youtube video instead of being pushed down underneath it... if you can answer this question, bonuspoints for you.)</p>
<p>Anyway, depending on which video is showing, I need for the comments associated with that video to display underneath. I wanted the comments to change dynamically onclick as well, so I created this code:</p>
<pre><code> //Send POST data to PHP script to switch to correct comments
//Select Thumbnail's second parent's ID attr on click
var commentsID = $(this).parents("div:eq(1)").attr("id");
$.ajax({
url: 'php/comments.inc.php',
type: 'POST',
data: 'commentsID=' + commentsID,
success: function(html) {
$('#comments').html(html);
$("#db").attr("value", '' + commentsID + '');
}
});
});
</code></pre>
<p>This essentially grabs the MySQL table name from the thumbnail's id attribute, posts it to a script which returns the correct comments, and sets a hidden form value which will tell the form which table to post the comments to.</p>
<p>In order to determine the most recently added video and return the correct comments, my thought was to send an ajax post with the first thumbnail's table identifier on the document's load to a script and have the returned comments appended and form hidden value set via ajax.</p>
<p>My question is- is the above practice a bad idea? That is to say, to me, it seems inefficient to make so many post requests to switch to the proper comments - isn't this something that is resource intensive? Also, is it safe to have my database table names readily visible in the id attribute of my thumbnails in order for my script to tell which database to connect to?</p>
<p>Thanks for all your help and any suggestions along the way. This is my first post here and it seems like a very useful website.</p>
http://stackoverflow.com/questions/1925294/mysql-query-for-database-systems-class-1MySQL query for database systems classTim2009-12-17T23:23:05Z2009-12-18T06:13:06Z
<pre>Student(Name, Studentnumber, Class, Major)
Course(Coursename, Coursenumber, CreditHours, Department)
Section(SectionIdentifier, Coursenumber, Semester, Year, Instructor)
GradeReport(Studentnumber, SectionIdentifier, Grade)</pre>
<p>for each major department, give the total number of students in that major whom have never taken a math class</p>
<p>I have:</p>
<p>Select G.studentnumber</p>
<p>--<em>from and where something i don't know</em>--</p>
<p>Group BY C.Department</p>
<p>any ideas what goes in the middle?</p>
http://stackoverflow.com/questions/1923265/installing-mysql-and-mysql-gem-on-snow-leopard0Installing MySQL and mysql gem on Snow Leopardauralbee2009-12-17T17:20:22Z2009-12-18T05:32:35Z
<p>It´s really a hard job figuring out how to get MySQL and mysql gem up and running on Snow Leopard 10.6.2. I followed the instructions of various posts but was not successful yet:</p>
<p>I build MySQL Version 5.1.39 from source and it installed successfully. When trying to login using (mysql -u root -p) mysql returned the following error: </p>
<p><code>ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)</code></p>
<p>that obviously meant that the MySQL Server (mysqld) was not running.</p>
<pre><code>which mysql: /usr/local/mysql/bin/mysql
which ruby: ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9])
gem -v: 1.3.5
mysql: Server version: 5.1.39 MySQL Community Server (GPL)
</code></pre>
<p>After a lot of googling around, I found out that</p>
<ol>
<li><p>this command can start mysqld:</p>
<p><code>sudo /usr/local/mysql/bin/mysqld_safe --user=mysql &</code></p></li>
<li><p>The Preference Pane MySQL Tool is probably broken in Mac OS X 10.5 and higher</p></li>
<li><p>This command should install the mysql gem correctly on Snow Leopard:</p>
<p><code>sudo gem uninstall mysql
sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config</code></p></li>
</ol>
<p>It ended up that I got the following error using something like rake db:create:</p>
<pre><code>dyld: lazy symbol binding failed: Symbol not found: _mysql_init
Referenced from: /opt/local/lib/ruby/gems/1.8/gems/mysql-2.8.1/lib/mysql_api.bundle
Expected in: flat namespace
dyld: Symbol not found: _mysql_init
Referenced from: /opt/local/lib/ruby/gems/1.8/gems/mysql-2.8.1/lib/mysql_api.bundle
Expected in: flat namespace
</code></pre>
<p>This error led me to the following post: <a href="http://cho.hapgoods.com/wordpress/?p=158" rel="nofollow">http://cho.hapgoods.com/wordpress/?p=158</a>, that basically tells me that the Ruby Version that came together with XCode 3.0 does not work in 64bit environments and a solution could be to install the 32bit versionof MySQL.</p>
<p>Any suggestions, how to proceed?</p>
http://stackoverflow.com/questions/1926079/how-many-rows-in-a-database-are-too-many1How many rows in a database are TOO MANY?Juanjo Conti2009-12-18T03:23:08Z2009-12-18T05:16:14Z
<p>I've a MySQL InnoDB table with 1000000 rows. Is this too much? Or databases can handle this and more? I ask because I noticed that some queries (for example, getting the last row from a table) ar slower (seconds) in the table with 1 millon rows than in one with 100.</p>
http://stackoverflow.com/questions/1925408/handling-complex-where-clauses-with-a-php-query-builder3Handling Complex WHERE clauses with a PHP Query BuilderXeoncross2009-12-17T23:50:16Z2009-12-18T04:47:41Z
<p>There are several ActiveRecord styled query builder libraries out there. Some are <a href="http://stackoverflow.com/questions/1049617/complex-where-clauses-using-the-php-doctrine-orm">stand alone</a> and some come <a href="http://codeigniter.com/user%5Fguide/database/active%5Frecord.html" rel="nofollow">built into frameworks</a>. However, they really have trouble with WHERE and HAVING clauses when it comes to complex SQL. Setting other databases aside - I am trying to come up with a MySQL and PostgreSQL compatible WHERE() method that could fix these current method downfalls.</p>
<p>What follows is a long list of ideas and examples showing the best I could come up with so far. However, I can't seem to solve <em>all of the use cases</em> and I feel my partial solution is sloppy. Anyone that can answer with something that solves all of these problems will not only answer this question - but a will be responsible for fixing a problem that has hunted PHP implementations for several years now.</p>
<p><strong>Common Operators</strong></p>
<pre><code> = Equal
<> Not Equal
> Greater Than
< Less Than
>= Greater Than Or Equal
<= Less Than Or Equal
BETWEEN between values on right
NOT logical NOT
AND logical AND
OR logical OR
</code></pre>
<p><strong>Example Where clauses</strong></p>
<pre><code>SELECT ... FROM table...
WHERE column = 5
WHERE column > 5
WHERE column IS NULL
WHERE column IN (1, 2, 3)
WHERE column NOT IN (1, 2, 3)
WHERE column IN (SELECT column FROM t2)
WHERE column IN (SELECT c3 FROM t2 WHERE c2 = table.column + 10)
WHERE column BETWEEN 32 AND 34
WHERE column BETWEEN (SELECT c3 FROM t2 WHERE c2 = table.column + 10) AND 100
WHERE EXISTS (SELECT column FROM t2 WHERE c2 > table.column)
</code></pre>
<p>There are many common ActiveRecord formats that the where() clause uses in the different <em>current</em> libraries.</p>
<pre><code>$this->db->where(array('session_id' => '?', 'username' => '?'));
$this->db->fetch(array($id, $username));
// vs with is_int($key)
$this->db->where(array('session_id', 'username'));
$this->db->fetch(array($id, $username));
// vs with is_string($where)
$this->db->where('session_id', '?');
$this->db->where('username');
$this->db->fetch(array($id, $username));
// vs with is_array($value)
$this->db->where('session_id', '?');
$this->db->where('username', array('Sam', 'Bob'));
$this->db->fetch(array($id));
</code></pre>
<p>Here is the final format that I have so far. It should handle grouping <code>(...) AND (...)</code> as well as prepared statement bound params ("?" & ":name").</p>
<pre><code>function where($column, $op = '=', $value = '?', $group = FALSE){}
// Single line
$this->db->where('column > 5');
$this->db->where('column IS NULL');
// Column + condition
$this->db->where('column', '=');
// WHERE column = ? (prepared statement)
$this->db->where('column', '<>');
// WHERE column <> ? (prepared statement)
// Column + condition + values
$this->db->where('column', '=', 5);
// // WHERE column = 5
$this->db->where('column', 'IN', '(SELECT column FROM t2)');
// WHERE column IN (SELECT column FROM t2)
$this->db->where('column', 'IN', array(1,2,3));
// WHERE column IN (1, 2, 3)
$this->db->where('column', 'NOT IN', array(1,2,3));
// WHERE column NOT IN (1, 2, 3)
// column + condition + values + group
$this->db->where(
array(
array('column', '<', 20),
array('column', '>', 10)
),
NULL,
NULL,
$group = TRUE
);
// WHERE (column < 20 AND column > 10)
</code></pre>
http://stackoverflow.com/questions/1926173/mysql-where-condition-question0mysql where condition questionAhmet vardar2009-12-18T03:52:31Z2009-12-18T04:18:50Z
<p>hi</p>
<p>is that possible to use WHERE like this;</p>
<pre><code>$no = $_GET['no'];
$query = "SELECT * FROM `numbers` WHERE `myno` - $no = 4";
...
</code></pre>
<p>if not, how can i get the rows like the below example ?</p>
<p>EDIT:
to be more clear, </p>
<pre><code>$today = date("Y-m-d");
$query = "SELECT * FROM `dates` WHERE date - $today = 7";
</code></pre>
<p>i want to find rows that has date field which is 7 days ago</p>
<p>thx</p>
http://stackoverflow.com/questions/1913547/mysql-vs-sql-server-vs-oracle0MySQL vs. SQL Server vs. Oracle...Crimson2009-12-16T09:54:00Z2009-12-18T04:05:00Z
<p>Hi Guys,</p>
<p>I have always only used MySQL and no other database system.</p>
<p>A question came up at a company meeting today and I was embarrassed I did not know:
To a developer, what earth-shaking functionality do MS or Oracle offer that MySQL lacks and which allows MS and Oracle to charge for their systems?</p>
http://stackoverflow.com/questions/1925825/is-it-totally-reckless-to-leave-mysql-connection-open-through-a-page1Is it totally reckless to leave mysql connection open through a page?Gal2009-12-18T01:57:33Z2009-12-18T04:02:18Z
<p>When querying the db is it plausible to feel extremely paranoid? I go as far as opening and closing mysql connection every time a new query has to be done. I am afraid that (especially with the ajax enabled pages) this would cause great performance downgrading.</p>
<p>Should I continue in this method or at least open and close connections once in everypage (instead of per-query)? (i'm writing in php btw)</p>
<p>thank you.</p>
http://stackoverflow.com/questions/1925879/very-complex-postgre-mysql-examples3Very Complex (Postgre/My)SQL examples?Xeoncross2009-12-18T02:15:07Z2009-12-18T03:14:42Z
<p>I often find myself in need of <em>very complex</em> SQL examples when testing <a href="http://stackoverflow.com/questions/1925408/handling-complex-where-clauses-with-a-php-query-builder">abstraction concepts</a> or just comparing database styles and structures while working with PostgreSQL, MySQL, and even SQLite.</p>
<p>I assume that means there are others in need of insane queries to open our eyes to what is possible and insure our DB layers can handle anything we throw at them.</p>
<p>So, can anyone share some queries that would through even the most hardcore, ORM-all-the-way guy for a loop?</p>
<p><a href="http://www.postgresql.org/docs/8.4/interactive/sql-select.html" rel="nofollow">PostgreSQL</a></p>
<pre><code>SELECT [ ALL | DISTINCT [ ON ( expression [, ...] ) ] ]
* | expression [ [ AS ] output_name ] [, ...]
[ FROM from_item [, ...] ]
[ WHERE condition ]
[ GROUP BY expression [, ...] ]
[ HAVING condition [, ...] ]
[ WINDOW window_name AS ( window_definition ) [, ...] ]
[ { UNION | INTERSECT | EXCEPT } [ ALL ] select ]
[ ORDER BY expression [ ASC | DESC | USING operator ] [ NULLS { FIRST | LAST } ] [, ...] ]
[ LIMIT { count | ALL } ]
[ OFFSET start [ ROW | ROWS ] ]
[ FETCH { FIRST | NEXT } [ count ] { ROW | ROWS } ONLY ]
[ FOR { UPDATE | SHARE } [ OF table_name [, ...] ] [ NOWAIT ] [...] ]
</code></pre>
<p><a href="http://dev.mysql.com/doc/refman/5.5/en/select.html" rel="nofollow">MySQL</a></p>
<pre><code>SELECT
[ALL | DISTINCT | DISTINCTROW ]
[HIGH_PRIORITY]
[STRAIGHT_JOIN]
[SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]
[SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]
select_expr [, select_expr ...]
[FROM table_references
[WHERE where_condition]
[GROUP BY {col_name | expr | position}
[ASC | DESC], ... [WITH ROLLUP]]
[HAVING where_condition]
[ORDER BY {col_name | expr | position}
[ASC | DESC], ...]
[LIMIT {[offset,] row_count | row_count OFFSET offset}]
[PROCEDURE procedure_name(argument_list)]
[INTO OUTFILE 'file_name'
[CHARACTER SET charset_name]
export_options
| INTO DUMPFILE 'file_name'
| INTO var_name [, var_name]]
[FOR UPDATE | LOCK IN SHARE MODE]]
</code></pre>
http://stackoverflow.com/questions/1925818/what-is-the-mysql-equivalent-of-a-postgresql-schema0What is the MySQL equivalent of a PostgreSQL 'schema'?DNS2009-12-18T01:56:00Z2009-12-18T02:44:07Z
<p>I have a PostgreSQL database whose tables are divided amongst a number of schemas. Each schema has a different set of access controls; for example, one schema might be read-only to regular users, while they are allowed to create tables on another. Schemas also act as namespaces, so users don't have to worry about duplicating existing tables when they create new ones.</p>
<p>I want to create a similar setup using MySQL. Does it have an equivalent concept? If not, how can I most closely simulate it? I would prefer not to use multiple databases.</p>
http://stackoverflow.com/questions/1925689/archflags-not-taking-command-mysql-64-bit-ruby-gem-installation-issues-on-snow-l0ARCHFLAGS not taking command (MySQL 64-bit ruby gem installation issues on Snow Leopard)thekevinscott2009-12-18T01:10:46Z2009-12-18T01:20:25Z
<p>Hello all,</p>
<p>I've never used the ARCHFLAGS command before and am in way over my head.</p>
<p>I'm struggling with getting the MySQL gem working on Snow Leopard in 64 bit.</p>
<p>What I'm doing is this command:</p>
<pre><code>sudo env ARCHFLAGS='-arch x86_64' gem install --verbose --no-rdoc --no-ri mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
</code></pre>
<p>The output looks like this:</p>
<pre><code>.....
make
gcc -I. -I. -I/usr/local/lib/ruby/1.8/universal-darwin8.0 -I. -DHAVE_RB_THREAD_START_TIMER -DHAVE_MYSQL_H -I/usr/local/mysql/include/mysql -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DIGNORE_SIGHUP_SIGQUIT -DDONT_DECLARE_CXA_PURE_VIRTUAL -fno-common -g -O2 -fno-common -pipe -fno-common -arch i386 -c mysql.c
cc -dynamic -bundle -undefined suppress -flat_namespace -arch i386 -L"/usr/local/lib" -o mysql_api.bundle mysql.o -lruby -L/usr/local/mysql/lib/mysql -lmysqlclient -lz -lm -lpthread -ldl -lobjc
ld: warning: in /usr/local/mysql/lib/mysql/libmysqlclient.dylib, file is not of required architecture
make install
/usr/bin/install -c -m 0755 mysql_api.bundle /usr/local/lib/ruby/gems/1.8/gems/mysql-2.8.1/lib
Successfully installed mysql-2.8.1
1 gem installed
</code></pre>
<p>What I see is that it specifically specifies -arch i386 even though I'm telling it not to; directly after, it gives me the warning about the file not being the required architecture, because it's not. It's 64 bit.</p>
<p>Running the file command gives this:</p>
<pre><code>file /usr/local/mysql/lib/mysql/libmysqlclient.dylib
/usr/local/mysql/lib/mysql/libmysqlclient.dylib: Mach-O 64-bit dynamically linked shared library x86_64
</code></pre>
<p>So of course it's not the required architecture. It seems that the gem install is ignoring my ARCHFLAGS command. Any idea why this would be? Like I said, I'm in way over my head on this stuff :P</p>
<p>Thanks so much all! - Kevin</p>
http://stackoverflow.com/questions/1925587/all-rows-after-the-nth-row1All rows after the nth row?mathon122009-12-18T00:44:42Z2009-12-18T01:15:34Z
<p>If I specify a number, say 5, what query will give me all the rows after the 5th row? Like,</p>
<pre><code>SELECT * FROM table WHERE 1=1;
</code></pre>
<p>only I want it to exclude the top 5. Thanks.</p>
http://stackoverflow.com/questions/1925385/speed-up-mysql-query-containing-300k-records2Speed up MySQL query containing 300k+ recordsskerit2009-12-17T23:45:23Z2009-12-18T01:02:01Z
<p>I need to lookup all my products (sku's) their latest stock quantity.<br>
I have one table (called "stock") with 315k+ records containing this information (a new batch of data is added every day, for most sku's). The reference data is in another table (called "stockfile").</p>
<p>This is the query to do it:</p>
<pre><code>SELECT s1 . * , f1 . *
FROM stock s1
JOIN stockfile f1 ON ( s1.stockfileid = f1.stockfileid )
LEFT OUTER JOIN ( stock s2
JOIN stockfile f2 ON ( s2.stockfileid = f2.stockfileid )
) ON ( s1.sku = s2.sku
AND ( f1.date < f2.date
OR f1.date = f2.date
AND f1.stockfileid < f2.stockfileid) )
WHERE s2.sku IS NULL
</code></pre>
<p>These are the table definitions</p>
<p><code>SHOW CREATE TABLE</code> stock:</p>
<pre><code>CREATE TABLE `stock` (
`stockid` bigint(20) NOT NULL AUTO_INCREMENT,
`sku` char(25) NOT NULL,
`quantity` int(5) NOT NULL,
`creationdate` datetime NOT NULL,
`stockfileid` smallint(5) unsigned NOT NULL,
`touchdate` datetime NOT NULL,
PRIMARY KEY (`stockid`),
KEY `stock_sku` (`sku`),
KEY `stock_stockfileid` (`stockfileid`)
) ENGINE=MyISAM AUTO_INCREMENT=316039 DEFAULT CHARSET=latin1
</code></pre>
<p><code>SHOW CREATE TABLE</code> stockfile:</p>
<pre><code>CREATE TABLE `stockfile` (
`stockfileid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`filename` varchar(25) NOT NULL,
`creationdate` datetime DEFAULT NULL,
`touchdate` datetime DEFAULT NULL,
`date` datetime DEFAULT NULL,
`begindate` datetime DEFAULT NULL,
`enddate` datetime DEFAULT NULL,
PRIMARY KEY (`stockfileid`),
KEY `stockfile_date` (`date`)
) ENGINE=MyISAM AUTO_INCREMENT=266 DEFAULT CHARSET=latin1
</code></pre>
<p>Without any extra indexes it takes... forever. I added these and it sped up to about 250 seconds:</p>
<pre><code>CREATE INDEX stock_sku ON stock(sku);
CREATE INDEX stock_stockfileid ON stock(stockfileid);
CREATE INDEX stockfile_date ON stockfile(date);
</code></pre>
<p>This is the <code>EXPLAIN</code> on the original query, with these indexes.</p>
<pre><code>id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE s1 ALL stock_stockfileid NULL NULL NULL 316038
1 SIMPLE f1 eq_ref PRIMARY PRIMARY 2 kompare.s1.stockfileid 1
1 SIMPLE s2 ref stock_sku,stock_stockfileid stock_sku 25 kompare.s1.sku 12 Using where
1 SIMPLE f2 eq_ref PRIMARY,stockfile_date PRIMARY 2 kompare.s2.stockfileid 1
</code></pre>
<p>Is there another way to speed things up?</p>
<ul>
<li>Thanks to Bill Karwin for solving the original query!</li>
</ul>
http://stackoverflow.com/questions/1920995/complex-sql-query-with-group-by-and-having0Complex SQL query with group by and havingIshu2009-12-17T11:04:22Z2009-12-17T23:38:32Z
<p>Hello All,</p>
<p>I am having a table orders</p>
<pre><code>orders (
id int unsigned not null,
fcr_date TIMESTAMP,
completion_date TIMESTAMP,
factory_no varchar(255),
vendor_no varchar(255))
</code></pre>
<p>Please ignore the data type typos if any.</p>
<p>I want to write a sql query that helps me filter the data per vendor factory. The data to fetch includes the number of orders per vendor factory(a unique group of vendor_no, factory_no), vendor_no, factory_no and the percentage of orders for which fcr_date is greater than completion_date(so percentage = number of orders where fcr_date is greater than completion date / count of orders). After that i need to filter the data where percentage is greater than say 20%. </p>
<p>I wrote the following query:</p>
<pre><code>SELECT vendor_no As vendor,
factory_no As factory,
COUNT(1) as count,
SUM(CASE WHEN fcr_date > completion_date THEN 1 ELSE 0 END) as filter_orders,
ROUND(filter_orders / count * 100, 4) as percent
FROM @orders
GROUP BY vendor_no,
factory_no
HAVING percent>20
</code></pre>
<p>but postgresql complains that it needs to have a column called percent in table to filter the results based on that. Any help is appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1923318/mysql-query-better-way-to-write-this0mysql query, better way to write this?mike2009-12-17T17:29:41Z2009-12-17T23:28:33Z
<p><strong>EDIT</strong>
I'm understand the table is a mess. I took over this project and am rewriting the PHP and making serious changes to the database. I am not asking how I should layout the database. I need to make a quick, temporary fix and am looking for a better way to write the query below.
<strong>END EDIT</strong></p>
<p>Hi there! </p>
<p>So I have this query(below) this is not finished and is getting long. I was wondering if there was a way to shorten it at all, or if there was a better way to go about it..?</p>
<pre><code>SELECT user.*,
cat1id.CategoryName as cat1,
cat2id.CategoryName as cat2,
cat3id.CategoryName as cat3,
cat4id.CategoryName as cat4,
cat5id.CategoryName as cat5,
cat6id.CategoryName as cat6,
cat7id.CategoryName as cat7,
cat8id.CategoryName as cat8,
cat9id.CategoryName as cat9,
cat10id.CategoryName as cat10
FROM users AS user
LEFT JOIN Category cat1id ON user.categoryid = cat1id.id
LEFT JOIN Category cat2id ON user.categoryid_2 = cat2id.id
LEFT JOIN Category cat3id ON user.categoryid_3 = cat3id.id
LEFT JOIN Category cat4id ON user.categoryid_4 = cat4id.id
LEFT JOIN Category cat5id ON user.categoryid_5 = cat5id.id
LEFT JOIN Category cat6id ON user.categoryid_6 = cat6id.id
LEFT JOIN Category cat7id ON user.categoryid_7 = cat7id.id
LEFT JOIN Category cat8id ON user.categoryid_8 = cat8id.id
LEFT JOIN Category cat9id ON user.categoryid_9 = cat9id.id
LEFT JOIN Category cat10id ON user.categoryid_10 = cat10id.id
WHERE user.id = 65447
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1925187/how-do-i-select-the-last-child-row-of-a-parent-child-relationship-using-sql1How do I select the last child row of a parent/child relationship using SQLrswolff2009-12-17T22:58:47Z2009-12-17T23:19:55Z
<p>Using SQL (MySQL) only I would like to select each of the last child rows of a parent child relationship where the child rows are ordered by a timestamp. </p>
<p>For example using the tables <code>invoices</code> and <code>invoice_items</code>, I want the newest (ie: most recently timestamped) <code>invoice_items</code> records for each <code>invoice</code> respectively.</p>
<pre><code>--------------------------
|Invoices |
--------------------------
|invoice_id| other fields|
--------------------------
| 1 | ... |
--------------------------
| 2 | ... |
--------------------------
| 3 | ... |
--------------------------
--------------------------------------------
|Invoice_Items |
--------------------------------------------
| id | invoice_id | invoice_item_timestamp |
--------------------------------------------
| 1 | 1 | 2009-12-01 10:00:00 |
--------------------------------------------
| 2 | 1 | 2009-12-01 10:01:00 |
--------------------------------------------
| 3 | 1 | 2009-12-01 10:02:00 |
--------------------------------------------
| 4 | 2 | 2009-12-01 9:00:00 |
--------------------------------------------
| 5 | 3 | 2009-12-02 08:30:00 |
--------------------------------------------
| 6 | 3 | 2009-12-03 08:31:00 |
--------------------------------------------
</code></pre>
<p>What is the best SQL syntax to produce a resultset that would look something like the following table?</p>
<pre><code>-----------------------------------------------------
|invoice_id| invoice_item_id |invoice_item_timestamp|
---------------------------------------------------
| 1 | 3 | 2009-12-01 10:02:00 |
| 2 | 4 | 2009-12-01 09:00:00 |
| 3 | 6 | 2009-12-03 08:31:00 |
-----------------------------------------------------
</code></pre>
http://stackoverflow.com/questions/1914671/php-mysql-small-scale-fuzzy-search1PHP/MySQL small-scale fuzzy searchJason Antman2009-12-16T13:30:50Z2009-12-17T23:09:56Z
<p>I'm looking to implement fuzzy search for a small PHP/MySQL application. Specifically, I have a database with about 2400 records (records added at a rate of about 600 per year, so it's a <em>small</em> database). The three fields of interest are street address, last name and date. I want to be able to search by one of those fields, and essentially have tolerance for spelling/character errors. i.e., an address of "123 Main Street" should also match "123 Main St", "123 Main St.", "123 Mian St", "123 Man St", "132 Main St", etc. and likewise for name and date. </p>
<p>The main issues I have with answers to other similar questions:</p>
<ul>
<li>It's impossible to define synonyms for every possible incorrect spelling, forget doing so for dates and names.</li>
<li>Lucene, etc. seems very heavy-weight for such a limited search data set (call it a maximum of 5,000 records, 3 fields per record).</li>
<li>Just doing something with wildcards doesn't seem logical with all of the possible spelling errors.</li>
</ul>
<p>Any suggestions? I know it isn't going to be possible to do natively with MySQL, but since the data set is so limited, I'd like to keep it relatively simple... perhaps a PHP class that gets <em>all</em> of the records from the DB, uses some sort of comparison algorithm, and returns the IDs of the similar records?</p>
<p>Thanks,
Jason</p>
http://stackoverflow.com/questions/1924850/convert-a-stored-md5-string-to-a-decimal-value-in-mysql1Convert a stored md5 string to a decimal value in MySQLCfreak2009-12-17T21:52:41Z2009-12-17T23:05:18Z
<p>I have a very large table in MySQL. I'm using a CHAR(32) field which contains an MD5 as a string of course. I'm running into an issue where I need to convert this to a decimal value using MySQL. A third party tool runs the query so writing code to do this isn't really an option.</p>
<p>MySQL does support storing hex values natively and converting them to integers. But it gets hung up converting it from a string. Here's what I've tried so far (md5_key is the name of my column)</p>
<p>First I just tried the UNHEX function but that returns a string so it gave me gooblygoop. I won't put that here. Next I tried the CAST function</p>
<pre><code>SELECT CAST( CONCAT('0x',md5_key) AS UNSIGNED ) FROM bigtable limit 1
</code></pre>
<p>Result = 0
Show warnings gives me: "Truncated incorrect INTEGER value: '0x000002dcc38af6f209e91518db3e79d3'"</p>
<p>BUT if I do:</p>
<pre><code>SELECT CAST( 0x000002dcc38af6f209e91518db3e79d3 AS UNSIGNED );
</code></pre>
<p>I get the correct decimal value. </p>
<p>So I guess what I need to know, is there a way to get MySQL to see that string as a hex value? (I also tried converting it to BINARY and then to the UNSIGNED but that didn't work either). </p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1924872/prefixing-mysql-tables-or-many-mysql-databases1Prefixing MySQL Tables or Many MySQL databases?Clash2009-12-17T21:55:05Z2009-12-17T22:21:35Z
<p>So, first things first, I'm a student. I'm developing an application where other students can have access to a MySQL database. Basically, I wanted to spare the students the need to search for hosting or even installing MySQL on their computers. Another plus is the fact that they can present their works to the class just by browsing a website. So, my idea was to use the same database for everyone, and add a login system for the students. This way, I can associate a prefix to every student, and they can execute any type of query without worrying if it will clash with someone's table, because the system would prefix their queries tables automatically. My idea was to limit how much tables and rows each user can have, which shouldn't be hard with a parser. It doesn't necessarily need to be a parser in PHP, it could be in perl or python. PHP is just more convenient. .NET would be more troublesome because of Windows</p>
<p>By the way, each class of "introduction to database systems" has around 50 students and there are 3 classes, so it could reach about 150 students...</p>
<p>For example, SELECT * FROM employees
has to become
SELECT * FROM prefix_employees
I do not know how the query will look like, it could get fairly complex so I'd probably need a well written parser, which I haven't found yet for PHP.</p>
<p>Thanks guys, I hope I have made myself clear</p>
http://stackoverflow.com/questions/1924271/has-anyone-compared-iphone-mysql-clients0Has anyone compared iPhone MySQL clientsMike N2009-12-17T20:12:37Z2009-12-17T21:34:26Z
<p>I am looking for the best MySQL client for my iPhone. I see several like <a href="http://itunes.apple.com/us/app/flipper/id299459577?mt=8" rel="nofollow">Flipper</a> and iMy and several others, but before I invest a bunch of time and a little money trying them out, I would like to just start with the best most feature rich one. I would link to the others but don't have permission yet.</p>
http://stackoverflow.com/questions/1858457/add-all-lines-multiplied-by-another-line-in-another-table0Add all lines multiplied by another line in another tablerussell2009-12-07T07:45:40Z2009-12-17T21:28:41Z
<p>Hi,
I hope I can explain this good enough. I have 3 tables. wo_parts, workorders and part2vendor. I am trying to get the cost price of all parts sold in a month. I have this script. </p>
<pre><code>$scoreCostQuery = "SELECT SUM(part2vendor.cost*wo_parts.qty) as total_score
FROM part2vendor
INNER JOIN wo_parts
ON (wo_parts.pn=part2vendor.pn)
WHERE workorder=$workorder";
</code></pre>
<p>What I am trying to do is each part is in wo_parts (under partnumber [pn]). The cost of that item is in part2vendor (under part number[pn]). I need each part price in part2vendor to be multiplied by the quantity sold in wo_parts. The way all 3 tie up is workorders.ident=wo_parts.workorder and part2vendor.pn=wo_parts.pn. I hope someone can assist. The above script does not give me the same total as when added by calculator.</p>
http://stackoverflow.com/questions/1924335/ansi-sql-query-to-force-return-0-records2ANSI Sql query to force return 0 recordsLeonardo M. Ramé2009-12-17T20:27:05Z2009-12-17T21:25:15Z
<p>Hi, I'm looking for an ANSI-SQL method to do a Select query without returning any record, but fill a TDataSet's Fields structure.</p>
<p>The method I found is by adding a "where 1=0" in any query, for example:</p>
<pre><code>Select Id, name, province
from customers
where 1=0
</code></pre>
<p>This is a fairly trivial example, it turns a little more complicated when I have to work with queries entered by the user, then parse them, remove the where clause if it already has one, and replace by "1=0".</p>
<p>If the last clause in the user-entered query is the where clause, then there's no problem at all, but what about more complicated queries like this:</p>
<pre><code>select
c.lastname,
sum(cs.amount)
from customersales cs
join customers c on c.idcustomer=cs.idcustomer
/* where 1=0 */
group by c.idcustomer, c.lastname
</code></pre>
<p>By using the "where 1=0" method, the only way to insert it in the previous example is by having a rather powerful SQL parser (remember the user can enter complex queries, including Subqueries, and all that), who can understand where to include this string.</p>
<p>Does anyone knows a better way to do this? I cannot use "limit 1" because it must be in an ANSI way.</p>
http://stackoverflow.com/questions/1919293/mysql-query-select-lastest-where-another-row-with-n-doesnt-exist0mysql Query: Select Lastest Where Another Row With N doesn't existrobr2009-12-17T03:36:11Z2009-12-17T21:18:51Z
<p>Hi, sorry about the title, I'm not sure how to even describe this, which makes it even harder to search for a solution.</p>
<p>I have a table which has many answers:</p>
<pre><code>CREATE TABLE `answers` (
`a_id` int(11) NOT NULL auto_increment,
`p_id` int(11) NOT NULL default '0',
`q_id` int(11) NOT NULL default '0',
`user_id` int(11) NOT NULL default '0',
`correct` int(1) NOT NULL default '0',
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`a_id`)
) ;
</code></pre>
<p>I need to select a <code>q_id</code> from a specific <code>user_id</code> and <code>p_id</code> where correct = 0, but only where a more recent row from the same user_id and p_id's <code>correct</code> field is not 1.</p>
<p>I can group by id, but am unsure how to eliminate groups where the top correct != 0</p>
<p>Thanks in advance. I've found many helpful answers here and am looking forward to contributing where I can.</p>
<p><strong>EDIT: Currently the query as stands, but takes 6 secs to execute:</strong></p>
<p>From both your answers I have query that works, but takes 6 secs to execute!</p>
<pre><code>SELECT a.q_id FROM answers a
JOIN (SELECT b.q_id, MAX(b.a_id) as a_id, b.correct
FROM answers b
WHERE b.correct = 1
AND b.user_id = 1
AND b.p_id = 22
GROUP BY b.q_id) c ON a.q_id = c.q_id
AND a.a_id > c.a_id
WHERE a.correct = 0
AND a.user_id = 1
AND a.p_id = 22
LIMIT 1
</code></pre>
<p>With no JOIN they take .26 secs. and .45 secs to execute How can I make it more efficient?</p>
<p>Is there another way to select the most recent correct = 0 row where a prev correct = 1 row does not exist?</p>
<p>Thanks for all your help!</p>
http://stackoverflow.com/questions/1918711/sql-query-in-mysql-using-group-by0SQL query in MySQL using GROUP BYrandombits2009-12-17T00:18:01Z2009-12-17T21:10:56Z
<p>Okay so this query should be easy but I'm having a bit of difficult. Let's say I have a table called 'foo' with columns 'a', 'b'.</p>
<p>I'm trying to figure out the following in one query:</p>
<p>select how of column 'a' are available of type column 'b', this is done with the following:</p>
<p>mysql> select count(a),b from foo GROUP BY b;</p>
<p>that's straight forward. but now I want to add a third output to that query as well which shows the percentage of the result from count(a) divided by count(*). So if I have 100 rows total, and one of the GROUP BY results comes back with 20, I can get the third column to output 20%. Meaning that column a makes for 20% of the aggregate pool.</p>