User Bill Karwin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:01:09Zhttp://stackoverflow.com/feeds/user/20860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805470/sql-query-problem/1805519#18055196Answer by Bill Karwin for SQL Query problemBill Karwin2009-11-26T20:28:46Z2009-11-26T22:56:26Z<p>Here's a pretty common and straightforward solution:</p>
<pre><code>SELECT a1.eid, a2.eid
FROM Assignment a1
JOIN Assignment a2 ON (a1.eid < a2.eid AND a1.pid = a2.pid)
GROUP BY a1.eid, a2.eid
HAVING COUNT(*) > 1;
</code></pre>
<p>This query does a join to match rows in the <code>Assignment</code> table to other rows in the same table with the same project and a different employee. We use <code><</code> to compare the employee id's so we don't get duplicate pairings. </p>
<p>Then we use <code>GROUP BY</code> to make sure there's only one row for each pair of employees.</p>
<p>The <code>HAVING</code> clause picks only those groups that have multiple rows, which are the pairs of employees who have worked on multiple projects together.</p>
http://stackoverflow.com/questions/1805612/weird-sql-server-behavior/1805650#18056501Answer by Bill Karwin for Weird SQL Server behaviorBill Karwin2009-11-26T21:10:27Z2009-11-26T21:10:27Z<blockquote>
<p>What´s the name of the behavior in the statement below? </p>
</blockquote>
<p>I would call that a <strong>side effect</strong> from evaluating an expression for each row of a query.</p>
http://stackoverflow.com/questions/1793833/sql-logic-two-tables-group-by/1793925#17939251Answer by Bill Karwin for SQL logic: two tables (group by?)Bill Karwin2009-11-25T00:28:20Z2009-11-26T00:30:16Z<p>Here's a solution that does a <code>GROUP BY</code> in the derived table subquery so you get only one row per movie title, and calculate the <code>ROW_NUMBER()</code> from that. </p>
<p>Then join the result of the derived table to <code>st</code> again in the outer query. There will still be multiple rows per movie title, but the <code>RowNum</code> will repeat so you can filter for your <code>@pageIndex</code> correctly.</p>
<pre><code>SELECT * FROM
(
SELECT ROW_NUMBER() OVER(ORDER BY " + orderField + @") AS RowNum,
mt.ID AS mt_ID,
mt.title AS mt_title,
[...]
FROM mt AS mt
INNER JOIN sttable AS st ON mt.ID =st.ID
WHERE mt.title = @variable
GROUP BY mt.ID
) mt1
INNER JOIN sttable AS st1 ON (mt1.ID = st1.ID)
WHERE mt1.RowNum BETWEEN
((@pageIndex - 1) * @pageSize + 1) AND @pageIndex*@pageSize;
</code></pre>
<p>You'll have to loop over the result of the outer query in your display code and begin a new row of output whenever the value <code>RowNum</code> changes. This is a pretty obvious technique.</p>
<p>If you instead want to do something like MySQL's <code>GROUP_CONCAT()</code> function, this is tricky in Microsoft SQL Server (I assume you're using Microsoft). </p>
<p>See blogs like <a href="http://blog.shlomoid.com/2008/11/emulating-mysqls-groupconcat-function.html" rel="nofollow">http://blog.shlomoid.com/2008/11/emulating-mysqls-groupconcat-function.html</a> that describe use of the <code>FOR xml PATH ('')</code> trick.</p>
<p>PS: Your sample SQL query didn't make sense given your verbal description, so I did my best to write something sensible. No guarantees it matches your schema. </p>
<p><hr></p>
<p>Re your comment: I don't think you need to order by any column of <code>st</code> inside the subquery. I intended there to be no columns from <code>st</code> included in the select-list of the subquery. The only reason there's an instance of <code>st</code> joined in the subquery is to restrict the rows of <code>mt</code> to those that have matching rows in <code>st</code>. But the <code>GROUP BY mt.ID</code> makes sure there's only one row per row of <code>mt</code> (actually since this is SQL Server and not MySQL you'll need to name all the <code>mt</code> columns of the select-list in the <code>GROUP BY</code> clause).</p>
<p><hr></p>
<p>Re your second comment:</p>
<blockquote>
<p>I want to first display mt rows that have corresponding st records that have been most recently added</p>
</blockquote>
<p>You can add other columns to the grouped query if you use grouping functions. For instance, the latest <code>date_added</code> per group of <code>mt</code> is <code>MAX(st.date_added)</code>, and you can add this column to the subquery.</p>
<p>However, don't use <code>ORDER BY</code> in the subquery. There's seldom any reason to sort a subquery, since the order may be altered anyway by using the subquery result in the JOIN or other operations you'd use a subquery in. </p>
<p>You should sort in the outer query:</p>
<pre><code>SELECT * FROM
(
SELECT ROW_NUMBER() OVER(ORDER BY " + orderField + @") AS RowNum,
mt.ID AS mt_ID,
mt.title AS mt_title,
[...] -- other mt.* columns
MAX(st.date_added) AS latest_date_added
FROM mt AS mt
INNER JOIN sttable AS st ON mt.ID =st.ID
WHERE mt.title = @variable
GROUP BY mt.ID, -- other mt.* columns
) mt1
INNER JOIN sttable AS st1 ON (mt1.ID = st1.ID)
WHERE mt1.RowNum BETWEEN
((@pageIndex - 1) * @pageSize + 1) AND @pageIndex*@pageSize
ORDER BY mt1.latest_date_added DESC, st1.date_added DESC;
</code></pre>
http://stackoverflow.com/questions/1777333/combining-the-following-mulitple-sql-queries-into-1-with-ms-access-asp/1777423#17774231Answer by Bill Karwin for Combining the following mulitple SQL queries into 1 with MS Access & ASPBill Karwin2009-11-22T01:13:13Z2009-11-25T18:24:26Z<p>This is the "greatest-n-per-group" problem that is posted frequently on StackOverflow. Here's a solution:</p>
<pre><code>SELECT s1.*
FROM scouting s1
LEFT OUTER JOIN scouting s2
ON (s1.astroLoc = s2.astroLoc AND s1.jumpGate < s2.jumpGate)
WHERE s1.astroLoc LIKE 'D[3-7][0-9]%' AND s1.astroLoc NOT LIKE 'D3[0-2]%'
GROUP BY s1.* -- here you need to name all fields in the select-list
HAVING COUNT(*) < 2;
</code></pre>
<p>This works because the query tries to match a given row <code>s1</code> to the set of rows <code>s2</code> that have the same <code>astroLoc</code> and a greater <code>jumpGate</code> value. The <code>HAVING</code> clause restricts the result to <code>s1</code> rows that match fewer than two, which means that the row would be in the top 2.</p>
<p>This assumes rows are unique over [<code>astroLoc</code>, <code>jumpGate</code>]. If not, you may need to add another term to the join condition to resolve ties.</p>
<p><hr></p>
<p>Re your comment, try the following alteration:</p>
<pre><code>SELECT s1.*
FROM scouting s1
LEFT OUTER JOIN scouting s2
ON (SUBSTRING(s1.astroLoc, 1, 3) = SUBSTRING(s2.astroLoc, 1, 3)
AND (s1.jumpGate < s2.jumpGate OR (s1.jumpGate = s2.jumpGate AND s1.ID < s2.ID))
WHERE s1.astroLoc LIKE 'D[3-7][0-9]%' AND s1.astroLoc NOT LIKE 'D3[0-2]%'
GROUP BY s1.* -- here you need to name all fields in the select-list
HAVING COUNT(*) < 2;
</code></pre>
<p>This compares only the first three characters of <code>astroLoc</code> for purposes of testing a row is in the same "group" as the other, and it also resolves ties in <code>jumpGate</code> by using the primary key.</p>
<p><hr></p>
<p>Re your other answer with new requirements: </p>
<blockquote>
<p>where does the <code>scouting.ownerGuild</code> = 'SWARM' go?</p>
</blockquote>
<p>It's hard to follow what you're asking for, since I don't know what are your table definitions or the meanings of columns. Do you want the outer query to be matched to the top three jumpgates that are owned by the SWARM guild?</p>
<pre><code>SELECT s1.astroLoc, g.[galaxy_aename], s1.jumpGate, s1.ownerGuild
FROM galaxy g INNER JOIN scouting s1 ON g.[galaxy_ID] = s1.galaxy
WHERE s1.jumpGate IN (SELECT TOP 3 s2.jumpGate FROM scouting AS s2
WHERE s2.galaxy = g.[galaxy_ID] AND s2.ownerGuild = 'SWARM'
ORDER BY s2.jumpGate DESC)
ORDER BY scouting.astroLoc DESC, scouting.jumpGate DESC
</code></pre>
<p>That would be a different query from this one, which makes the outer query return the jumpgates owned by SWARM that match the top three jumpgates owned by anyone.</p>
<pre><code>SELECT s1.astroLoc, g.[galaxy_aename], s1.jumpGate, s1.ownerGuild
FROM galaxy g INNER JOIN scouting s1 ON g.[galaxy_ID] = s1.galaxy
WHERE s1.jumpGate IN (SELECT TOP 3 s2.jumpGate FROM scouting AS s2
WHERE s2.galaxy = g.[galaxy_ID]
ORDER BY s2.jumpGate DESC)
AND s1.ownerGuild = 'SWARM'
ORDER BY scouting.astroLoc DESC, scouting.jumpGate DESC
</code></pre>
<p>It's possible the second query will return an empty result, if none of the SWARM jumpgates are in the top three.</p>
<p>PS: It's customary on StackOverflow to edit your original question post at the top, when you need to add more detail or followup questions.</p>
http://stackoverflow.com/questions/1793387/help-with-mysql-query/1793609#17936092Answer by Bill Karwin for Help with MySQL QueryBill Karwin2009-11-24T23:14:26Z2009-11-24T23:14:26Z<p>You forgot a comma after <code>t.date</code> in your select-list:</p>
<pre><code>SELECT t.user_id, t.nursery_ss, t.nursery_ws, t.greeter, t.date -- comma needed here
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>
http://stackoverflow.com/questions/1787245/oracle-sql-count-function-display-only-one-value/1787267#17872674Answer by Bill Karwin for Oracle SQL Count Function Display Only One ValueBill Karwin2009-11-24T01:39:35Z2009-11-24T01:39:35Z<p>Try this:</p>
<pre><code>SELECT COUNT(NAME),NAME
FROM SAMPLE
GROUP BY NAME
HAVING COUNT(*) = 1 AND MAX(COLOR) = 'yellow';
</code></pre>
<p>As @paxdiablo said, you need to leave the rows in the group until <em>after</em> you do the group by, so the count will be accurate. Then you can test for <code>'yellow'</code> in the <code>HAVING</code> clause. </p>
<p>Even though it may seem redundant to use <code>MAX()</code> like I did in the above example, it's good form because any expression in the <code>HAVING</code> clause should use group-oriented functions. <code>HAVING</code> restricts groups whereas <code>WHERE</code> restricts rows.</p>
http://stackoverflow.com/questions/1786654/mysqli-server-returned-unknown-type-246/1787216#17872162Answer by Bill Karwin for MySQLi - Server returned unknown type 246Bill Karwin2009-11-24T01:19:10Z2009-11-24T01:19:10Z<p>In MySQL 5.0.3, a new field type was introduced, to support fixed-point math with more accuracy. This new field type is identified in the MySQL protocol with a numeric value 246.</p>
<p>If you have a MySQL server running 5.0.x or higher, and you use the <code>NUMERIC</code> or <code>DECIMAL</code>, it's incompatible with the <code>DECIMAL</code> field type used in the MySQL 4.x client.</p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/upgrading-from-previous-series.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/upgrading-from-previous-series.html</a> says:</p>
<blockquote>
<p>Because the MySQL 5.0 server has a new implementation of the <code>DECIMAL</code> data type, a problem may occur if the server is used by older clients that still are linked against MySQL 4.1 client libraries. If a client uses the binary client/server protocol to execute prepared statements that generate result sets containing numeric values, an error will be raised: <code>'Using unsupported buffer type: 246'</code></p>
<p>This error occurs because the 4.1 client libraries do not support the new <code>MYSQL_TYPE_NEWDECIMAL</code> type value added in 5.0. There is no way to disable the new <code>DECIMAL</code> data type on the server side. You can avoid the problem by relinking the application with the client libraries from MySQL 5.0. </p>
</blockquote>
<p>Also see <a href="http://bugs.php.net/bug.php?id=35536" rel="nofollow">http://bugs.php.net/bug.php?id=35536</a> </p>
<p>You should be able to resolve this issue by upgrading your MySQL client library in PHP. Either rebuild PHP, or else just drop in a new MySQL client binary. </p>
<p>Best of all would be to use the newer <strong><a href="http://dev.mysql.com/downloads/connector/php-mysqlnd/" rel="nofollow">mysqlnd</a></strong> library, which gives you a lot of benefits to performance and functionality. That library is included in the source distribution of PHP 5.3 and later. It states in the FAQ that it <em>requires</em> PHP 5.3, which actually surprises me, but that's what they say.</p>
http://stackoverflow.com/questions/648308/filtering-from-join-table/648394#6483944Answer by Bill Karwin for Filtering from join-tableBill Karwin2009-03-15T19:36:30Z2009-11-23T20:51:41Z<p><strong><code>JOIN</code> solution:</strong></p>
<pre><code>SELECT t.*
FROM topics t
JOIN tags_topics t1 ON (t.id = t1.topicId AND t1.tagId = 1)
JOIN tags_topics t2 ON (t.id = t2.topicId AND t2.tagId = 2)
JOIN tags_topics t3 ON (t.id = t3.topicId AND t3.tagId = 3)
</code></pre>
<p><strong><code>GROUP BY</code> solution:</strong></p>
<p>Note that you need to list all <code>t.*</code> columns in the <code>GROUP BY</code> clause, unless you use MySQL or SQLite.</p>
<pre><code>SELECT t.*
FROM topics t JOIN tags_topics tt
ON (t.id = tt.topicId AND tt.tagId IN (1,2,3))
GROUP BY t.id, ...
HAVING COUNT(*) = 3;
</code></pre>
<p><strong>Subquery solution:</strong></p>
<pre><code>SELECT t.*
FROM topics t
WHERE t.id = ANY (SELECT topicId FROM tags_topics tt WHERE tt.tagId = 1)
AND t.id = ANY (SELECT topicId FROM tags_topics tt WHERE tt.tagId = 2)
AND t.id = ANY (SELECT topicId FROM tags_topics tt WHERE tt.tagId = 3);
</code></pre>
<p><strong>Modified <code>GROUP BY</code> solution:</strong></p>
<p>Simplifies <code>GROUP BY</code> clause by isolating search in a subquery.</p>
<pre><code>SELECT t.*
FROM topics t
WHERE t.id IN (
SELECT tt.topicId FROM tags_topics tt
WHERE tt.tagId IN (1,2,3))
GROUP BY tt.id HAVING COUNT(*) = 3
);
</code></pre>
http://stackoverflow.com/questions/1783303/oracle-select-all-rows-using-the-contains-keyword/1785230#17852301Answer by Bill Karwin for Oracle select all rows using the contains keywordBill Karwin2009-11-23T18:57:57Z2009-11-23T18:57:57Z<p>The documentation says wildcards with the Oracle Text <code>CONTAINS()</code> predicate are <code>%</code> and <code>_</code> just like the <code>LIKE</code> predicate.</p>
<p>Does the following work? I don't have an instance of Oracle handy to test.</p>
<pre><code>select *
from my_table
where contains (title,
'<query><textquery grammar="CTXCAT">%</textquery></query>') > 0
</code></pre>
http://stackoverflow.com/questions/1772903/real-time-synchronization-of-database-data-across-all-the-clients/1773118#17731181Answer by Bill Karwin for Real-time synchronization of database data across all the clientsBill Karwin2009-11-20T20:41:21Z2009-11-21T18:21:21Z<p>Firebird has a feature called <code>EVENT</code> that you may be able to use to notify clients of changes to the database. The idea is that when data in a table is changed, a trigger posts an event. Firebird takes care of notifying all clients who have registered an interest in the event by name. Once notified, each client is responsible for refreshing its own data by querying the database.</p>
<p>The client can't get info from the event about the new or old values. This is by design, because there's no way to resolve this with transaction isolation. Nor can your client register for events using wildcards. So you have to design your server-to-client notification pretty broadly, and let the client update to see what exactly changed.</p>
<p>See <a href="http://www.firebirdsql.org/doc/whitepapers/events%5Fpaper.pdf" rel="nofollow">http://www.firebirdsql.org/doc/whitepapers/events%5Fpaper.pdf</a></p>
<p>You don't mention what client platform or language you're using, so I can't advise on the specific API you would use. I suggest you google for instance "firebird event java" or "firebird event php" or similar, based on the language you're using.</p>
<p><hr></p>
<p>Since you say in a comment that you're using WPF, here's a link to a code sample of some .NET application code registering for notification of an event:</p>
<p><a href="http://www.firebirdsql.org/index.php?op=devel&sub=netprovider&id=examples#3" rel="nofollow">http://www.firebirdsql.org/index.php?op=devel&sub=netprovider&id=examples#3</a></p>
<p><hr></p>
<p>Re your comment: Yes, the Firebird event mechanism is limited in its ability to carry information. This is necessary because any information it might carry could be canceled or rolled back. For instance if a trigger posts an event but then the operation that spawned the trigger violates a constraint, canceling the operation but not the event. So events can only be a kind of "hint" that something of interest may have happened. The other clients need to refresh their data at that time, but they aren't told what to look for. This is at least better than polling.</p>
<p>So you're basically describing a publish/subscribe mechanism -- a <strong>message queue</strong>. I'm not sure I'd use an RDBMS to implement a message queue. It can be done, but you're basically reinventing the wheel.</p>
<p>Here are a few message queue products that are well-regarded:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms811052.aspx" rel="nofollow">Microsoft MSMQ</a> (seems to be part of Windows Professional and Server editions)</li>
<li><a href="http://www.rabbitmq.com/" rel="nofollow">RabbitMQ</a> (free open-source)</li>
<li><a href="http://activemq.apache.org/index.html" rel="nofollow">Apache ActiveMQ</a> (free open-source)</li>
<li><a href="http://www.ibm.com/software/integration/wmq/" rel="nofollow">IBM WebSphere MQ</a> (probably overkill in your case)</li>
</ul>
<p>This means that when one client modifies data in a way that others may need to know about, that client <em>also</em> has to post a message to the message queue. When consumer clients see the message they're interested in, they know to refresh their copy of some data.</p>
http://stackoverflow.com/questions/1568735/zendtool-cli-issues-throwing-fatal-errors/1616661#16166611Answer by Bill Karwin for Zend_Tool CLI issues, throwing fatal errorsBill Karwin2009-10-24T01:08:54Z2009-11-21T00:45:30Z<p>I found a temporary workaround:</p>
<ul>
<li><p>Edit PHPUnit/Framework.php, near line 70:</p>
<pre><code>require 'PHPUnit/Framework/TestSuite/DataProvider.php';
</code></pre></li>
<li><p>Change to:</p>
<pre><code>require_once 'PHPUnit/Framework/TestSuite/DataProvider.php';
</code></pre></li>
</ul>
<p>This is probably not the long-term fix, but it resolves the immediate symptom.</p>
<p><hr></p>
<p>Update 2009-11-20: I just saw a commit to the ZF 1.9 branch that claims to resolve this <a href="http://framework.zend.com/issues/browse/ZF-7894" rel="nofollow">issue</a>. Presumably the fix will be in the next point-release (1.9.6) and in subsequent minor releases (1.10.0 and later).</p>
http://stackoverflow.com/questions/1758828/mysql-query-glitch/1758913#17589131Answer by Bill Karwin for MySQL Query GlitchBill Karwin2009-11-18T20:39:11Z2009-11-18T20:44:19Z<p>There's no way a <code>SELECT</code> query can change values stored in the database. It's a read-only command. Either the values were already zero, or else the query is only returning zeroes (in spite of what's stored in the database), or else it's returning no rows at all.</p>
<p>I'd guess that your query isn't formed properly, and it's returning no rows. </p>
<p>You probably have a variable in your VB.NET code and its initial value is zero, to be overridden as it reads the result of the SQL query. When the SQL query returns no rows, this variable retains its initial zero value.</p>
<p>So try an experiment: initialize your points variable to -99 or something and try it again. I bet your app will display -99.</p>
<p>Furthermore, I'd assume the data actually in the database has not changed to zero. Only what you display defaults to zero because your SQL query isn't functioning.</p>
<p>When you're debugging dynamic SQL, you need to look at the complete SQL query -- <em>after</em> you interpolate any dynamic variables into it. It's hard to debug when you're staring at a VB.NET string expression that builds an SQL query. It's like troubleshooting your car problems by visiting an automobile factory. </p>
http://stackoverflow.com/questions/1758665/right-hand-side-mysql-functions-in-dbixclass/1758838#17588384Answer by Bill Karwin for right-hand-side MySQL functions in DBIx::ClassBill Karwin2009-11-18T20:29:31Z2009-11-18T20:29:31Z<p>It <a href="http://search.cpan.org/~ribasushi/SQL-Abstract-1.60/lib/SQL/Abstract.pm#WHERE%5FCLAUSES" rel="nofollow">seems</a> that the way to do expressions is to pass a scalar ref or array ref if you want to use literal SQL.</p>
<p>Here's an example showing using a query parameter for the <code>$wait_period</code> variable into the expression:</p>
<pre><code>...
'Time(submitted_at)' => { '>' => \['Time(Now()-Interval ? Minute)', $wait_period] }
...
</code></pre>
http://stackoverflow.com/questions/1753716/mvc-is-it-just-a-3-tier-model/1753789#17537896Answer by Bill Karwin for MVC - is it just a 3 tier model?Bill Karwin2009-11-18T05:12:42Z2009-11-18T20:03:30Z<p>I caution against treating the Model as simply a data access layer. That's oversimplifying, and it results in you putting too much code into the Controller Layer. It's better if you put more of that code in the Model, and make database persistence only a part of the Model's internal code. I like to think of MVC like this:</p>
<ul>
<li>Controller: handle input, determine which Model and which View to instantiate</li>
<li>View: presentation of application data</li>
<li>Model: all other logic for the application, including but not limited to DAL</li>
</ul>
<p>This is basically the <a href="http://martinfowler.com/eaaCatalog/pageController.html" rel="nofollow">Page Controller</a> pattern.</p>
<p>Another way to think about it is this: suppose you had to port your web app to another platform, such as a command-line app or a desktop GUI app. What parts of the application logic should you reuse? The Controller and View would change as you port your app to another platform, because the implementation of both input and output would need to change. The code that doesn't need to change should be implemented in your Model. </p>
<p>If you've done the separation of concerns right, then the Model, View, and Controller would be minimally coupled, and you could change the implementation of one without affecting the others too much. If you change the Model and you find yourself rewriting a lot of code in the Controller or the View, you probably haven't separated these layers adequately. And vice versa.</p>
<p>Read about Martin Fowler's <a href="http://martinfowler.com/bliki/AnemicDomainModel.html" rel="nofollow">Anemic Domain Model</a> antipattern or <a href="http://www.infoq.com/minibooks/domain-driven-design-quickly" rel="nofollow">Domain Driven Design Quickly</a> to get some other perspectives.</p>
<p>Also see my <a href="http://karwin.blogspot.com/2008/05/activerecord-does-not-suck.html" rel="nofollow">blog from 2008</a> that I wrote in response to people decrying the Active Record pattern. It got some good comments and discussion.</p>
http://stackoverflow.com/questions/1753837/unknown-column-0-in-on-clause/1753862#17538622Answer by Bill Karwin for Unknown column {0} in on clauseBill Karwin2009-11-18T05:34:57Z2009-11-18T06:51:09Z<p>I'd guess <code>Puzzles</code> doesn't have a column <code>PuzzleID</code>. Is the column called simply <code>ID</code> in that table? Or <code>Puzzle_ID</code>?</p>
<p>You should run <code>SHOW CREATE TABLE Puzzles</code> to see the current definition of that table.</p>
<p>Sometimes a missing quote can be the culprit:</p>
<pre><code>... ON `Puzzles.PuzzleID` ...
</code></pre>
<p>The above would look for a column literally named "<code>Puzzles.PuzzleID</code>," that is, a column name 16 characters long with a dot in the middle.</p>
<p><hr></p>
<p>@Bell deserves the prize for noticing that you're mixing comma-style joins and SQL-92 style joins. I didn't notice that! </p>
<p>You shouldn't use both in the same query, because the precedence of join operations is probably causing the confusion.</p>
<p>The <code>JOIN</code> keyword has higher precedence. Simplifying your query so we can look at the table-expressions, it would be evaluated as follows:</p>
<pre><code>SELECT . . .
FROM (Puzzles JOIN PuzzleCategories),
(Clients JOIN Publications JOIN PublicationIssues JOIN PuzzleUsages)
</code></pre>
<p>The problem is that the join to <code>PuzzleUsages</code> needs to compare to the <code>Puzzles.PuzzleID</code> column, but because of the precedence issue, it can't. The column is not part of the operands of the last <code>JOIN</code>.</p>
<p>You can use parentheses to resolve the error, explicitly overriding precedence of table-expressions (just as you would use parentheses in arithmetic expressions):</p>
<pre><code>SELECT . . .
FROM Puzzles JOIN (PuzzleCategories, Clients)
JOIN Publications JOIN PublicationIssues JOIN PuzzleUsages
</code></pre>
<p>Or you can just use SQL-92 <code>JOIN</code> syntax consistently. I agree with @Bell that this is more clear.</p>
<pre><code>SELECT . . .
FROM Puzzles JOIN PuzzleCategories JOIN Clients
JOIN Publications JOIN PublicationIssues JOIN PuzzleUsages
</code></pre>
http://stackoverflow.com/questions/1753874/how-to-design-this-mysql-database/1753912#17539125Answer by Bill Karwin for how to design this mysql databaseBill Karwin2009-11-18T05:49:29Z2009-11-18T05:49:29Z<p>This is an SQL antipattern that I call <strong>Metadata Tribbles.</strong> They look cute and friendly, but soon they multiply out of control. </p>
<p>As soon as you hear phrases beginning "I have an identical table per..." or "I have an identical column per..." then you probably have Metadata Tribbles. </p>
<p>You should start out by making one database with four tables, and add a <code>user_id</code> attribute to each of the four tables.</p>
<p>There are exception cases where you'd want to split into separate databases per user, but they are <em>exceptions</em>. Don't go there unless you know what you're doing and can prove that it would be necessary.</p>
http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251121#25112162Answer by Bill Karwin for Do I really need version control?Bill Karwin2008-10-30T17:53:45Z2009-11-18T05:44:08Z<p>Here's a scenario that may illustrate the usefulness of source control even if you work alone.</p>
<blockquote>
<p>Your client asks you to implement an ambitious modification to the website. It'll take you a couple of weeks, and involve edits to many pages. You get to work.</p>
<p>You're 50% done with this task when the client calls and tells you to drop what you're doing to make an urgent but more minor change to the site. You're not done with the larger task, so it's not ready to go live, and the client can't wait for the smaller change. But he also wants the minor change to be merged into your work for the larger change.</p>
<p>Maybe you are working on the large task in a separate folder containing a copy of the website. Now you have to figure out how to do the minor change in a way that can be deployed quickly. You work furiously and get it done. The client calls back with further refinement requests. You do this too and deploy it. All is well.</p>
<p>Now you have to merge it into the work in progress for the major change. What did you change for the urgent work? You were working too fast to keep notes. And you can't just diff the two directories easily now that both have changes relative to the baseline you started from.</p>
</blockquote>
<p>The above scenario shows that source control can be a great tool, even if you work solo. </p>
<ul>
<li>You can use branches to work on longer-term tasks and then merge the branch back into the main line when it's done.</li>
<li>You can compare whole sets of files to other branches or to past revisions to see what's different. </li>
<li>You can track work over time (which is great for reporting and invoicing by the way).</li>
<li>You can recover any revision of any file based on date or on a milestone that you defined.</li>
</ul>
<p><strong>Edit:</strong> for solo work, Subversion is recommended. CVS is all but antiquated, and GIT is more useful for distributed teams. A good book is "<a href="http://www.pragprog.com/titles/svn2/pragmatic-version-control-using-subversion" rel="nofollow">Pragmatic Version Control using Subversion, 2nd Edition</a>" by Mike Mason.</p>
<p><strong>Update:</strong> If you prefer git, a good book is "<a href="http://www.pragprog.com/titles/tsgit/pragmatic-version-control-using-git" rel="nofollow">Pragmatic Version Control Using Git</a>" by Travis Swicegood.</p>
http://stackoverflow.com/questions/1752556/is-it-safe-to-include-extra-columns-in-the-select-list-of-a-sqlite-group-by-query/1752603#17526033Answer by Bill Karwin for Is it safe to include extra columns in the SELECT list of a SQLite GROUP BY query?Bill Karwin2009-11-17T23:27:03Z2009-11-17T23:42:39Z<p>You can use these queries "safely," that is, without getting ambiguous results, if the extra columns are <em>functionally dependent</em> on the column(s) you group by:</p>
<pre><code>SELECT c.parent_id, COUNT(*), p.any_column
FROM child_table c
JOIN parent_table p USING (parent_id)
GROUP BY c.parent_id;
</code></pre>
<p>The example above would work in SQLite, and produce an unambiguous result, because there's no way <code>p.any_column</code> could have multiple values per group. However, this query is strictly in violation of the SQL standard, and most brands of RDBMS would raise an error.</p>
<p>It's too easy to write a query that produces ambiguous results, though. When you name a column that has multiple values per group, you can't control which value is returned in your result set. </p>
<p>In practice, MySQL returns the value from the <em>first</em> row with respect to physical storage, and SQLite returns the value from the <em>last</em> row. But it's totally implementation-dependent and not reliable. If the next version of either software changes its internals, you could get different query results after you upgrade. So it's best not to rely on this behavior.</p>
<p><hr></p>
<p>Regarding your example, where <code>content</code> should "intuitively" have the value from the row where <code>sequence</code> is MAX. But is this really intuitive? Consider these other cases:</p>
<pre><code>SELECT MAX(sequence), MIN(sequence), type, content
FROM message
GROUP BY type
</code></pre>
<p>So which row now supplies the value for <code>content</code>? The row where <code>sequence</code> is MAX, or the row where <code>sequence</code> is MIN?</p>
<p>What if you use a non-unique column (e.g. <code>date</code>), and there are multiple rows with the same MAX value for <code>date</code>, but different values for <code>content</code>?</p>
<pre><code>SELECT MAX(date), type, content
FROM message
GROUP BY type
</code></pre>
<p>What about other aggregate functions like <code>AVG()</code> or <code>SUM()</code>? It could be that the value of the aggregate corresponds to no individual row in the table. So now which row should supply the value for <code>content</code>?</p>
<pre><code>SELECT AVG(sequence), type, content
FROM message
GROUP BY type
</code></pre>
http://stackoverflow.com/questions/1746775/mysql-6-release-date/1751656#17516561Answer by Bill Karwin for MySQL 6 release date?Bill Karwin2009-11-17T20:47:30Z2009-11-17T20:53:40Z<h2>Never.</h2>
<p><a href="http://lists.mysql.com/packagers/418" rel="nofollow">http://lists.mysql.com/packagers/418</a> (2009-05-22) says:</p>
<blockquote>
<p>6.0.11 will be the last release of 6.0. After this we will be transitioning into a New Release Model
for the MySQL Server: <a href="http://forge.mysql.com/wiki/Development%5FCycle" rel="nofollow">http://forge.mysql.com/wiki/Development%5FCycle</a></p>
</blockquote>
<p>You can also view slides and a recording from the MySQL University webinar (2009-06-11) about the new MySQL Release Model here: <a href="http://forge.mysql.com/wiki/The%5FNew%5FMySQL%5FRelease%5FModel" rel="nofollow">http://forge.mysql.com/wiki/The%5FNew%5FMySQL%5FRelease%5FModel</a> </p>
http://stackoverflow.com/questions/1751152/mysql-password-function/1751262#17512625Answer by Bill Karwin for MySQL password functionBill Karwin2009-11-17T19:42:40Z2009-11-17T19:42:40Z<p>The docs for MySQL's <a href="http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html#function%5Fpassword" rel="nofollow">PASSWORD()</a> function states:</p>
<blockquote>
<p>The PASSWORD() function is used by the authentication system in MySQL Server; you should not use it in your own applications.</p>
</blockquote>
<p>Read "<a href="http://www.codinghorror.com/blog/archives/000953.html" rel="nofollow">You're Probably Storing Passwords Incorrectly</a>" for better advice on hashing and storing passwords.</p>
<p>MD5 and SHA-1 are considered to be too weak to use for passwords. The current recommendation is to use SHA-256.</p>
<p>I contributed a patch to MySQL to support a <a href="http://bugs.mysql.com/bug.php?id=13174" rel="nofollow"><code>SHA2()</code></a> function, and the patch was accepted, but since their roadmap has changed it's not clear when it will make it into a released product.</p>
<p>In the meantime, you can use hashing and salting in your programming language, and simply store the result hash digest in the database. If you use PHP, SHA-256 is available in the <a href="http://php.net/manual/en/function.hash.php" rel="nofollow"><code>hash()</code></a> function.</p>
http://stackoverflow.com/questions/1750736/is-there-any-point-encrypting-passwords-with-more-than-md5/1751112#17511121Answer by Bill Karwin for Is there any point encrypting passwords with more than md5?Bill Karwin2009-11-17T19:17:49Z2009-11-17T19:17:49Z<p>Yes, SHA-256 is recommended for passwords. In fact for secure US government software it's <a href="http://csrc.nist.gov/groups/ST/toolkit/secure%5Fhashing.html" rel="nofollow">mandated</a> by NIST starting in 2010.</p>
<p>See <a href="http://www.openssl.org/" rel="nofollow">http://www.openssl.org/</a> for a free, open-source cryptographic library that's validated by FIPS. It implements message digest algorithms, including the SHA-2 family.</p>
<p>There are still legitimate uses for MD5, SHA-1, and other hashing algorithms of lesser strength, but they are not recommended for hashing passwords.</p>
http://stackoverflow.com/questions/1750567/regex-to-match-script-tag/1750647#17506477Answer by Bill Karwin for RegEx to match <script> tag?Bill Karwin2009-11-17T17:56:34Z2009-11-17T17:56:34Z<p>Also see this week's Coding Horror: <a href="http://www.codinghorror.com/blog/archives/001311.html" rel="nofollow">Parsing Html The Cthulhu Way</a>, inspired by the epic <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">answer by @bobince</a> that @JS Bangs links to.</p>
http://stackoverflow.com/questions/1750046/php-sanitise-a-comma-seperated-string/1750291#17502910Answer by Bill Karwin for PHP - Sanitise a comma seperated stringBill Karwin2009-11-17T17:02:48Z2009-11-17T17:02:48Z<p>If you want to transform a comma-separated list instead of simply rejecting it if it's not formed correctly, you could do it with <a href="http://php.net/array%5Fmap" rel="nofollow"><code>array_map()</code></a> and avoid writing an explicit loop.</p>
<pre><code>$sanitized_input = implode(",", array_map("intval", explode(",", $input)));
</code></pre>
http://stackoverflow.com/questions/1746946/no-matter-what-i-do-the-same-value-is-being-stored-in-mysql-table-field/1747100#17471001Answer by Bill Karwin for No matter what I do the same value is being stored in MySQL table field...Bill Karwin2009-11-17T07:06:48Z2009-11-17T07:06:48Z<p>The number 668244234626 is out of range for an integer. It's being truncated to the max value for an integer, which is 2147483647.</p>
<p>If you run your INSERT statement in a MySQL client, you get this result:</p>
<pre><code>Query OK, 1 row affected, 1 warning (0.00 sec)
</code></pre>
<p>Then if you show warnings:</p>
<pre><code>mysql> show warnings;
+---------+------+------------------------------------------------+
| Level | Code | Message |
+---------+------+------------------------------------------------+
| Warning | 1264 | Out of range value for column 'ad_id' at row 1 |
+---------+------+------------------------------------------------+
</code></pre>
<p>I notice you declare <code>ad_id INT(13)</code>. Note that the argument 13 has no effect on the range of values that you can store in the integer. A MySQL integer data type always stores a 32-bit number, and the value you gave is greater than 2<sup>32</sup>.</p>
<p>If you need to store larger values, you should use <code>BIGINT</code>.</p>
http://stackoverflow.com/questions/1735534/what-is-the-right-way-to-provide-a-zend-application-with-a-database-handler/1735683#17356839Answer by Bill Karwin for What is the "right" Way to Provide a Zend Application With a Database Handler Bill Karwin2009-11-14T21:30:31Z2009-11-16T19:02:52Z<p>The idea is that your Bootstrap reads a config file and you declare config entries to describe the database adapter you want to create:</p>
<pre><code>[bootstrap]
resources.db.adapter = Pdo_Mysql
resources.db.params.dbname = "mydatabase"
resources.db.params.username = "webuser"
resources.db.params.password = "XXXX"
resources.db.isDefaultTableAdapter = true
</code></pre>
<p>If you use the config keys following the right convention, this automatically signals the Bootstrap base class to create and initialize a <code>Zend_Application_Resource_Db</code> object, and stores it in the <a href="http://framework.zend.com/manual/en/zend.application.theory-of-operation.html#zend.application.theory-of-operation.bootstrap.registry" rel="nofollow">bootstrap resource registry</a>.</p>
<p>Later in your Controller, you can access the resource registry.
<strong><em>note:</em></strong> I've edited this code after testing it a bit more.</p>
<pre><code>class SomeController extends Zend_Controller_Action
{
public function init()
{
$bootstrap = $this->getInvokeArg("bootstrap");
if ($bootstrap->hasPluginResource("db")) {
$dbResource = $bootstrap->getPluginResource("db");
$db = $dbResource->getDbAdapter();
}
}
}
</code></pre>
<p>Alternatively, you can write a custom init method in your Bootstrap class, to save an object in the default Zend_Registry:</p>
<pre><code>class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function _initDb()
{
if ($this->hasPluginResource("db")) {
$dbResource = $this->getPluginResource("db");
$db = $dbResource->getDbAdapter();
Zend_Registry::set("db", $db);
}
}
}
</code></pre>
<p>Now you can access your db object in one step instead of three:</p>
<pre><code>class SomeController extends Zend_Controller_Action
{
public function init()
{
$db = Zend_Registry::get("db");
}
}
</code></pre>
<p>Personally, I would use the second technique, because then I have to access the resource registry only once, in my bootstrap. In the first example I would have to copy the same block of code to all of my Controllers. </p>
http://stackoverflow.com/questions/1740133/7-1-7-10-ordering-numbers/1740156#17401560Answer by Bill Karwin for 7.1 < 7.10 - ordering numbersBill Karwin2009-11-16T05:03:54Z2009-11-16T05:03:54Z<p>You could use the values as a lookup to another table that stores their ordinal position.</p>
<pre><code>CREATE TABLE Versions (
version VARCHAR(10) PRIMARY KEY,
ordinal INT NOT NULL
);
INSERT INTO Versions ('7.1', 1);
INSERT INTO Versions ('7.10', 2);
</code></pre>
<p>Make your table reference <code>Versions</code> with a foreign key:</p>
<pre><code>CREATE TABLE MyTable (
. . .
version VARCHAR(10) NOT NULL,
FOREIGN KEY (version) REFERENCES Versions(version)
);
</code></pre>
<p>Now you can join to this table and sort by the ordinal:</p>
<pre><code>SELECT m.*
FROM MyTable m
JOIN Versions v USING (version)
ORDER BY v.ordinal;
</code></pre>
<p>For even greater flexibility, make <code>ordinal</code> a <code>FLOAT</code> so you can add new entries in between existing entries without having to renumber them all.</p>
http://stackoverflow.com/questions/1737526/how-to-create-a-symbol-table-if-given-a-grammar-in-a-yacc-file/1739401#17394010Answer by Bill Karwin for How to create a symbol table if given a grammar in a yacc file?Bill Karwin2009-11-16T00:08:52Z2009-11-16T00:08:52Z<p>Your question is very broad, and there exist books and online resources to answer it.<br>
It would be best for you to do some reading and then come back and ask more targeted questions.</p>
<p>Check out the answers to this StackOverflow question for links to Yacc tutorials:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/641701/excellent-online-tutorial-for-lex-and-yacc">http://stackoverflow.com/questions/641701/excellent-online-tutorial-for-lex-and-yacc</a></li>
</ul>
http://stackoverflow.com/questions/1731253/pdo-database-abstraction/1731302#17313021Answer by Bill Karwin for pdo database abstractionBill Karwin2009-11-13T19:22:43Z2009-11-14T01:07:26Z<p>Don't use <code>addslashes()</code>. It's an inadequate way to escape values, and has known security bugs.</p>
<p>Double-quotes in standard SQL are for delimited identifiers. Use single-quotes for string literals. </p>
<p>MySQL's default mode allows you to use single-quotes and double-quotes interchangeably, and back-quotes for delimited identifiers. But I recommend getting into the habit of using only single-quotes for strings, because it makes your SQL code more portable to other RDBMS vendors, and also more clear to anyone reading your code.</p>
<p>You should use query parameters, as @Mike B suggests. This is easy and it's far more secure than interpolating variables into SQL expressions.</p>
<p><hr></p>
<p>You can use <code>bindParam()</code> or you can supply a <code>$values</code> associative array to the <code>execute()</code> function. Doing both is redundant. </p>
<p>Note that the array you give to the <code>execute()</code> method doesn't have to have the <code>:</code> character prepending the placeholder name:</p>
<pre><code>$stmt = $pdo->prepare("SELECT * FROM MyTable WHERE myfield = :myfield");
// both of the following would work:
$stmt->execute( array(":myfield" => $value ) );
$stmt->execute( array("myfield" => $value ) );
</code></pre>
<p>Also to support parameters in both the <code>SET</code> clause and the <code>WHERE</code> clause, I'd suggest that you distinguish the fields when you specify the parameter placeholder names. That way if you reference the same field in both clauses (one to search for an old value, and the other to set a new value), you won't conflict.</p>
<p>Perhaps <code>":set$field"</code> in the <code>SET</code> clause, and <code>":where$field"</code> in the <code>WHERE</code> clause. </p>
<p><hr></p>
<p><strong>update:</strong> I have tested the following code. First, I use plain arrays, instead of the CachingIterator you used. I don't need to use the <code>hasNext()</code> method since I'm using <code>join()</code>.</p>
<pre><code>$settings = array("myfield" => "value");
$conditions = array("id" => 1);
$sql = "UPDATE $table SET \n";
</code></pre>
<p>Next is a demo of using <code>array_map()</code> and <code>join()</code> instead of loops. I'm using PHP 5.3.0 so I can use inline closure functions. If you use an earlier version of PHP, you'll have to declare the functions earlier and use them as callbacks.</p>
<pre><code>$sql .= join(",",
array_map(
function($field) { return "$field = :set$field"; },
array_keys($settings)
)
);
if ($conditions)
{
$sql .= " WHERE "
. join(" AND ",
array_map(
function($field) { return "$field = :where$field"; },
array_keys($conditions)
)
);
}
$stmt = $db->prepare($sql);
</code></pre>
<p>I couldn't get <code>bindParam()</code> to work, it always adds the value "1" instead of the actual values in my array. So here's code to prepare an associative array and pass it to <code>execute()</code>:</p>
<pre><code>$params = array();
foreach ($settings as $field=>$value) {
$params[":set$field"] = $value;
}
foreach ($conditions as $field=>$value) {
$params[":where$field"] = $value;
}
$stmt->execute($params);
</code></pre>
http://stackoverflow.com/questions/1730665/how-to-emulate-tagged-union-in-a-database/1730783#17307833Answer by Bill Karwin for How to emulate tagged union in a database?Bill Karwin2009-11-13T17:34:17Z2009-11-13T17:34:17Z<p>Some people use a design called Polymorphic Associations to do this, allowing <code>vehicle_id</code> to contain a value that exists either in <code>car</code> or <code>motor</code> tables. Then add a <code>vehicle_type</code> that names the table which the given row in <code>t1</code> references. </p>
<p>The trouble is that you can't declare a real SQL foreign key constraint if you do this. There's no support in SQL for a foreign key that has multiple reference targets. There are other problems, too, but the lack of referential integrity is already a deal-breaker.</p>
<p>A better design is to borrow a concept from OO design of a <em>common supertype</em> of both <code>car</code> and <code>motor</code>:</p>
<pre><code>CREATE TABLE Identifiable (
id SERIAL PRIMARY KEY
);
</code></pre>
<p>Then make <code>t1</code> reference this super-type table:</p>
<pre><code>CREATE TABLE t1 (
vehicle_id INTEGER NOT NULL,
FOREIGN KEY (vehicle_id) REFERENCES identifiable(id)
...
);
</code></pre>
<p>And also make the sub-types reference their parent supertype. Note that the primary key of the sub-types is <em>not</em> auto-incrementing. The parent supertype takes care of allocating a new id value, and the children only reference that value. </p>
<pre><code>CREATE TABLE car (
id INTEGER NOT NULL,
FOREIGN KEY (id) REFERENCES identifiable(id)
...
);
CREATE TABLE motor (
id INTEGER NOT NULL,
FOREIGN KEY (id) REFERENCES identifiable(id)
...
);
</code></pre>
<p>Now you can have true referential integrity, but also support multiple subtype tables with their own attributes.</p>
<p><hr></p>
<p>The answer by @Quassnoi also shows a method to enforce <em>disjoint subtypes</em>. That is, you want to prevent both <code>car</code> and <code>motor</code> from referencing the same row in their parent supertype table. When I do this, I use a single-column primary key for <code>Identifiable.id</code> but also declare a <code>UNIQUE</code> key over <code>Identifiable.(id, type)</code>. The foreign keys in <code>car</code> and <code>motor</code> can reference the two-column unique key instead of the primary key.</p>
http://stackoverflow.com/questions/1730454/limiting-access-by-permission/1730688#17306880Answer by Bill Karwin for Limiting Access by PermissionBill Karwin2009-11-13T17:19:11Z2009-11-13T17:19:11Z<p>Here's how I'd write the query:</p>
<pre><code>$stmt = $pdo->prepare("
SELECT (u.password = :password) AS password_is_correct,
(r.roleid IS NOT NULL) AS role_is_authorized
FROM users u
LEFT JOIN ON user_roles r
ON u.id=r.userid AND r.roleid IN (Administrator, Associate)
WHERE u.username = :username");
$stmt->execute(array(":password"=>$password, ":username"=>$username));
</code></pre>
<p>This allows you to distinguish between the three conditions: (1) username does not exist, (2) password is wrong, or (3) role is not authorized.</p>
<p>PS: Should "Administrator" and "Associate" be quoted or something? The way you're using them, they look like identifiers rather than values.</p>
http://stackoverflow.com/questions/1805470/sql-query-problem/1805519#1805519Comment by Bill Karwin on SQL Query problemBill Karwin2009-11-26T22:57:37Z2009-11-26T22:57:37Z@Marius: You're right about using <code>COUNT(DISTINCT)</code> but I assumed that a many-to-many intersection table would have a unique constraint over [eid, pid] and the OP didn't say anything that would imply differently.http://stackoverflow.com/questions/1805350/update-table-sql-query-helpComment by Bill Karwin on Update table SQL query helpBill Karwin2009-11-26T19:43:56Z2009-11-26T19:43:56ZPlease post the current table definition (i.e. the <code>CREATE TABLE</code> statement), and the brand of RDBMS you use. Any answer will depend on this information.http://stackoverflow.com/questions/1805306/should-i-pursue-java-or-php-for-a-career-path-in-programming/1805353#1805353Comment by Bill Karwin on Should I pursue Java or PHP for a career path in programming?Bill Karwin2009-11-26T19:41:55Z2009-11-26T19:41:55Z+1 This is what I was thinking too. One good way to understand one language better is to learn another language.http://stackoverflow.com/questions/1794563/sql-date-formatComment by Bill Karwin on SQL Date FormatBill Karwin2009-11-25T05:17:48Z2009-11-25T05:17:48Z@bochur1: You should tag your question with the brand of RDBMS you use, because the answer varies from one to another.http://stackoverflow.com/questions/952449/favorite-zend-framework-tips-and-tricks/965585#965585Comment by Bill Karwin on Favorite Zend Framework tips and tricks?Bill Karwin2009-11-24T08:18:08Z2009-11-24T08:18:08ZThe downside to using buffered queries is that the client does a fetchall, which can blow out your memory limit if you do a query with a large result set.http://stackoverflow.com/questions/1787245/oracle-sql-count-function-display-only-one-value/1787267#1787267Comment by Bill Karwin on Oracle SQL Count Function Display Only One ValueBill Karwin2009-11-24T08:03:15Z2009-11-24T08:03:15Z@paxdiablo: If the group has a <code>COUNT(*)</code> of only one row, then <code>MAX(color) = MIN(color)</code>, so it works for any color. The suggestions by @David and @Gary are also unnecessary. Either the group's sole color is 'yellow' or another color or else NULL. The condition <code>MAX(color) = 'yellow'</code> works in any of these cases.http://stackoverflow.com/questions/1780255/does-wordpress-com-use-one-set-of-tables-for-all-usersComment by Bill Karwin on Does Wordpress.com use ONE set of tables for ALL users?Bill Karwin2009-11-22T23:09:30Z2009-11-22T23:09:30ZThat said, it's probably <b>premature optimization</b> to split up the data like that, unless you're operating at the scale of a wordpress.com. In fact, that same DB architect said they had started out using a single database, but as they grew they realized they had to split up the data.http://stackoverflow.com/questions/1780255/does-wordpress-com-use-one-set-of-tables-for-all-usersComment by Bill Karwin on Does Wordpress.com use ONE set of tables for ALL users?Bill Karwin2009-11-22T23:06:43Z2009-11-22T23:06:43ZYes. I'll offer this as a comment because it's hearsay: I was at the MySQL Conference last April and I sat down to eat lunch at a random table. The database architect from wordpress.com was sitting at the table, and we talked about his site. He said they manage thousands of separate databases, which makes it simpler to do backups, migrate blogs to different servers, etc.http://stackoverflow.com/questions/1777333/combining-the-following-mulitple-sql-queries-into-1-with-ms-access-asp/1777423#1777423Comment by Bill Karwin on Combining the following mulitple SQL queries into 1 with MS Access & ASPBill Karwin2009-11-22T17:57:10Z2009-11-22T17:57:10ZIf this were one of the RDBMS products I'm familiar with, I'd recommend that you split <code>astrLoc</code> into two fields, so you can do the comparison without using <code>MID()</code> and you could create an index on it. But I have such little experience with MS Access that I'm not sure if that would make a difference. Sorry I can't be of any more help.http://stackoverflow.com/questions/1777333/combining-the-following-mulitple-sql-queries-into-1-with-ms-access-aspComment by Bill Karwin on Combining the following mulitple SQL queries into 1 with MS Access & ASPBill Karwin2009-11-22T02:24:04Z2009-11-22T02:24:04ZPlease tag your question with the brand of database you're using. It matters to the solution.http://stackoverflow.com/questions/1777333/combining-the-following-mulitple-sql-queries-into-1-with-ms-access-asp/1777423#1777423Comment by Bill Karwin on Combining the following mulitple SQL queries into 1 with MS Access & ASPBill Karwin2009-11-22T02:22:05Z2009-11-22T02:22:05ZHmm. I don't do MS Access -- does it not have <code>SUBSTRING()</code>? I was assuming you're using MS SQL Server from your <code>TOP</code> syntax.http://stackoverflow.com/questions/1777333/combining-the-following-mulitple-sql-queries-into-1-with-ms-access-asp/1777423#1777423Comment by Bill Karwin on Combining the following mulitple SQL queries into 1 with MS Access & ASPBill Karwin2009-11-22T01:31:58Z2009-11-22T01:31:58ZWhat is the primary key of the scouting table?http://stackoverflow.com/questions/1773333/interesting-sql-problem/1773369#1773369Comment by Bill Karwin on Interesting SQL problemBill Karwin2009-11-20T21:46:54Z2009-11-20T21:46:54Z@Jeffrey Hantin: If there's a PK/Unique constraint over (id,type) then you don't need to use the <code>DISTINCT</code> query modifier.http://stackoverflow.com/questions/1714461/ansi-sql-manual/1766949#1766949Comment by Bill Karwin on ANSI SQL ManualBill Karwin2009-11-20T21:43:57Z2009-11-20T21:43:57ZYes it's a good book about relation database concepts and theory, but it's not an SQL language reference. http://stackoverflow.com/questions/1714461/ansi-sql-manual/1752671#1752671Comment by Bill Karwin on ANSI SQL ManualBill Karwin2009-11-20T21:42:53Z2009-11-20T21:42:53ZI agree Celko's books are worth reading, but they are not complete SQL reference books.