|
|
|
|
|
by GravityWell
4691 days ago
|
|
I'm not sure why MySQL seems to have received more attention over the years. PostgreSQL might be more robust. One point about PostgreSQL that bothered me was the apparent lack of case insensitive collation. Where SQL Server, Oracle, and MySQL default to case insensitive, PostgreSQL defaults to case sensitive, and there was no built in way to change this, so you have to do things like "WHERE LOWER(namecol) = 'jdoe'" to work around it. At least that was the situation last time I checked. |
|