1
vote
Polymorphism in SQL database tables?
Since you tagged this PostgreSQL, you could look at http://www.postgresql.org/docs/8.1/static/ddl-inherit.html …
6
votes
Am I safe against SQL injection
In terms of your procedure you seem safe as the variable in the SP won't be expanded into code, but you can still expose yourself if you don't use a parameterized query like "SELECT * FRO …
0
votes
Is it possible to make a recursive SQL query ?
Jacob Rigby: If you really needed a directed graph so bad, PgSQL does support the SQL XML/XPath extensions. Though, didn't Ted Codd win this debate in 1974?
…
0
votes
What are some ways I can improve the performance of a regular expression query in Postgresql 8?
If you have a limited set of regexes to match against you could create a table with the primary key of your table and a field indicating if it matches that regex, which you would update on a trigge …
