0
votes
Parameterized SQL Columns?
Column names in some databases can contain spaces, which mean you'd have to quote the column name, but if your database contains no such columns, just run the column name through a regular expressi …
0
votes
Combining split date ranges in a SQL query
If the min()/max() solutions are not good enough (e.g. if the dates are not contiguous and you want to group separate date ranges separately), I wonder if something using Oracle's START WITH and CO …
2
votes
How can I get a list of indices on a SQL table using Perl?
There's a statistics_info() method in DBI, but unfortunately, the only DBD I've seen it implemented in so far is DBD::ODBC . So if you use ODBC (update: or PostgreSQL!) you're in luck. Otherwise sp …
0
votes
Can someone copyright a SQL query?
Another option (which you may or may not implement AT YOUR OWN RISK -- CONSULT A LAWYER!): Leave his code as is. Write a wrapper that reads his SQL and does a s/2009/$this_year/ before running it. …
