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 …
1
vote
What is the best way to avoid SQL injection attacks?
As others have said, parametrized or prepared queries are the answer. Here is how you do it in PHP/Postgres:
$sqlstr = 'SELECT thing FROM table WHERE field = $1::varchar AND other = …
1
vote
Inheritance in database?
PostgreSQL has this feature. Just add this to the end of your table definition:
INHERITS FROM (tablename[, othertable...])
The child table will have all the …
5
votes
7
votes
How to select the nth row in a SQL database table?
The syntax in PostgreSQL is:
SELECT * FROM mytable ORDER BY somefield LIMIT 1 OFFSET 20;
Apparently, the SQL standard is silent on the limit issue, which is why ev …
3
votes
How to get number of occurrences in a SQL IN clause
Your question is a bit confusing. Do you want to get the number of times each page has been tagged? The number of times each page has gotten each tag? The number of unique users that have tagged a …
4
votes
1:1 Foreign Key Constraints
A foreign key column with the UNIQUE and NOT NULL constraints that references a UNIQUE, NOT NULL column in another table creates a 1:(0|1) relationship, which is probably what you want.
If …
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 …
2
votes
SQL: How to get the id of values I just INSERTed?
There's no standard way to do it (just as there is no standard way to create auto-incrementing IDs). Here are two ways to do it in PostgreSQL. Assume this is your table:
CREATE TABL …
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.
…
0
votes
Fetch one row per account id from list
PostgreSQL has the DISTINCT ON clause, that works this way:
SELECT DISTINCT ON (accountid) id, score, accountid
FROM scoretable
ORDER BY score DESC
LIMIT 10;
I don …
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:
…
3
votes
How do I output progress messages from a SELECT statement?
SQL itself has no provision for this kind of thing. Any way of doing this would involve talking directly to the database engine, and would not be standard across databases.
…
