5
votes
SQL Case Statement Syntax?
Here are the examples from the PostgreSQL docs (Postgres follows the standard here):
SELECT a, CASE WHEN a=1 THEN 'one' WHEN a=2 THEN 'two' ELSE 'other …
3
votes
Recommendation for a PostgreSQL Programming Tutorial?
PostgreSQL follows the ANSI SQL standards more closely than just about any database out there, so a general SQL tutorial should work.
I think that the …
0
votes
Migrating from MySQL to PostgreSQL
I don't have any migration tips for you, but I have to question your reason for moving. Unless you want to make changes to the database engine yourself, the GPL shouldn't be that big of a hassle. …
4
votes
joining latest of various usermetadata tags to user rows
This is actually not that hard to do in PostgreSQL because it has the "DISTINCT ON" clause in its …
2
votes
Reasons for SQL differences
It's certainly effective lock-in, as 1800 says. But in fairness to the database vendors, the SQL standard is always playing catch-up to current databases' feature sets. Most databases we have today …
3
votes
Languages other than SQL in postgres
"isn't that [text manipulation] more of something that should be programmed into the application?"
Usually, yes. The generally accepted " …
8
votes
How to concatenate strings of a string field in a PostgreSQL ‘group by’ query?
I've run into this before also. There is no built-in aggregate function to concatenate strings. It seems like this would be needed all the time, but it's just not part of the default set.
I …
6
votes
Possible to perform cross-database queries with postgres?
This functionality isn't part of the default PostgreSQL install, but you can add it in. It's called dblink.
…
2
votes
How can I confirm a database is Postgres & what version it is using SQL?
PostgreSQL has a version() function you can call.
SELECT version();
It will return something like this:
…
2
votes
Do you recommend PostgreSQL over MySQL?
The traditional wisdom is that you should use Postgres if you have a complicated schema that needs lots of joins or if you have heavy writing. MySQL (traditionally) has been for databases that rare …
-1
votes
Selecting unique rows in a set of two possibilities
In PostgreSQL, I believe it would be this:
SELECT DISTINCT ON (id) id, name
FROM mytable
ORDER BY id, name = 'John' DESC;
Update - false sorts before true - I had …
4
votes
Can/how do you add a circle of references without breaking RI?
I think that you answered your own question - you have to make a transaction block. In PostgreSQL this should work:
BEGIN;
SET CONSTRAINTS ALL DEFERRED;
INSERT INTO questions (que …
3
votes
want to change pgsql port
There should be a line in your postgresql.conf file that says:
port = 1486
Change that.
The location of the file can vary depending on your install options …
0
votes
Where to find a good reference when choosing a database?
Postgresql has a page of case studies that you can quote and link to.
Really, any of the above would have worked fo …
4
votes
How good is Rails and PostgreSQL support?
PostgreSQL support with rails is excellent - I would not hesitate to use it.
If you are looking for examples, Planet Argon is a high-pro …
