Bill Karwin

38,205
Reputation
3820 views

Registered User

Name Bill Karwin
Member for 1 year
Seen 51 mins ago
Website
Location California, US
Age 42

Software engineer since 1987, SQL maven.

Experienced in Java, PHP, Perl, C, JavaScript, and many other coding skills.

Giving an online presentation on full-text search in MySQL at MySQL University December 3 2009.

Currently writing a book on SQL Antipatterns.

1d
comment what encoding stackoverflow used in mysql?
You might enjoy listening to the StackOverflow podcast. Joel and Jeff talk fairly regularly about implementation of StackOverflow.com.
1d
accepted SQL logic: two tables (group by?)
1d
accepted Seqential & continuous invoice number in Hibernate / ColdFusion ORM?
2d
comment What are the possible ways to handle an expandable form using PHP?
Virtually every modern site on the internet relies on Javascript. The days of accommodating people who turn off Javascript are past.
2d
answered When is it wise to use regular expressions with HTML?
2d
awarded  sql
Nov
28
accepted MySQL world database Trying to avoid subquery
Nov
28
revised MySQL world database Trying to avoid subquery
edited tags
Nov
28
answered MySQL world database Trying to avoid subquery
Nov
28
comment What should I name a table that maps two tables together?
Yep, those are good comments. I think these are solvable within the guideline of using natural language as a naming convention.
Nov
28
comment What should I name a table that maps two tables together?
I suppose HasColor could be another possible name for the intersection table that uses natural language.
Nov
28
answered What should I name a table that maps two tables together?
Nov
28
comment Rolling my own “Version Control”
@Matthew: Thanks for the support, but I don't think RCIX is listening to any of the suggestions on this thread.
Nov
28
answered Rolling my own “Version Control”
Nov
28
answered Seqential & continuous invoice number in Hibernate / ColdFusion ORM?
Nov
28
revised What is MySQL primary (key1, key2)
added 953 characters in body; added 1 characters in body; added 4 characters in body; added 602 characters in body
Nov
28
revised What is MySQL primary (key1, key2)
deleted 8 characters in body
Nov
27
answered What is MySQL primary (key1, key2)
Nov
27
answered Nearest thing to PyParsing in PHP
Nov
26
comment SQL Query problem
@Marius: You're right about using COUNT(DISTINCT) 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.
Nov
26
revised SQL Query problem
added 465 characters in body
Nov
26
answered Weird SQL Server behavior
Nov
26
answered SQL Query problem
Nov
26
comment Update table SQL query help
Please post the current table definition (i.e. the CREATE TABLE statement), and the brand of RDBMS you use. Any answer will depend on this information.
Nov
26
comment Should I pursue Java or PHP for a career path in programming?
+1 This is what I was thinking too. One good way to understand one language better is to learn another language.
Nov
26
revised SQL logic: two tables (group by?)
added 1269 characters in body
Nov
25
revised SQL logic: two tables (group by?)
added 545 characters in body
Nov
25
revised Combining the following mulitple SQL queries into 1 with MS Access & ASP
added 1557 characters in body
Nov
25
accepted Help with MySQL Query
Nov
25
comment SQL Date Format
@bochur1: You should tag your question with the brand of RDBMS you use, because the answer varies from one to another.
Nov
25
answered SQL logic: two tables (group by?)
Nov
24
answered Help with MySQL Query
Nov
24
comment Favorite Zend Framework tips and tricks?
The 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.
Nov
24
comment Oracle SQL Count Function Display Only One Value
@paxdiablo: If the group has a COUNT(*) of only one row, then MAX(color) = MIN(color), 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 MAX(color) = 'yellow' works in any of these cases.
Nov
24
answered Oracle SQL Count Function Display Only One Value
Nov
24
answered MySQLi - Server returned unknown type 246
Nov
23
revised Filtering from join-table
added 10 characters in body
Nov
23
answered Oracle select all rows using the contains keyword
Nov
23
awarded  mysql
Nov
23
accepted Real-time synchronization of database data across all the clients
Nov
22
comment Does Wordpress.com use ONE set of tables for ALL users?
That said, it's probably premature optimization 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.
Nov
22
comment Does Wordpress.com use ONE set of tables for ALL users?
Yes. 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.
Nov
22
comment Combining the following mulitple SQL queries into 1 with MS Access & ASP
If this were one of the RDBMS products I'm familiar with, I'd recommend that you split astrLoc into two fields, so you can do the comparison without using MID() 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.
Nov
22
comment Combining the following mulitple SQL queries into 1 with MS Access & ASP
Please tag your question with the brand of database you're using. It matters to the solution.
Nov
22
comment Combining the following mulitple SQL queries into 1 with MS Access & ASP
Hmm. I don't do MS Access -- does it not have SUBSTRING()? I was assuming you're using MS SQL Server from your TOP syntax.
Nov
22
revised Combining the following mulitple SQL queries into 1 with MS Access & ASP
added 669 characters in body
Nov
22
revised Trouble with chaining joins
added 62 characters in body
Nov
22
comment Combining the following mulitple SQL queries into 1 with MS Access & ASP
What is the primary key of the scouting table?
Nov
22
revised Combining the following mulitple SQL queries into 1 with MS Access & ASP
edited tags
Nov
22
answered Combining the following mulitple SQL queries into 1 with MS Access & ASP