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 …
1
vote
Normalizing a Table with Low Integrity
I've had to do this before. The only real way to do it is to manually match up the various locations. Use your database's console interface and grouping select statements. First, add your "Company …
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 …
5
votes
0
votes
Database Case Insensitive Index?
PostgreSQL also supports indexing the results of a function:
CREATE INDEX mytable_lower_col1_idx ON mytable (lower(col1));
The only other option I can think of is …
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 …
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 …
1
vote
Database: What is Multiversion Concurrency Control (MVCC) and who supports it?
Here is a link to the PostgreSQL doc page on MVCC. The choice quote (emphasis mine):
Th …
9
votes
Simple password encryption
As mk says, SHA1 or MD5 are the standard ones, along with SHA2.
What you want is more generally called a cryptographic hash function. Cryptographic hashes are designed to be one-way (given …
4
votes
File database suggestion with support for multiple concurent users.
I really don't think that file-based databases can scale past half a dozen users. The last time I had an Access database (admittedly this was quite a while ago) I had to work really hard to get it …
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 " …
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 …
