PostgreSQL version 8. has been released
PostgreSQL version 8 has been released. The biggest change is that Windows is now a supported platform.
For someone like me who mainly works with Oracle databases, PostgreSQL is a much better fit than MySQL. PostgreSQL supports many features which i use daily on Oracle databases: stored procedures, schema’s, views, sequences, etc.
I’m currently using MySQL 4.0 for the Jumpteam website, but i’d rather use PostgreSQL. One reason: Unions. The site started on MySQL 3. No support for unions. Now we’re using MySQL 4.0.18. MySQL 4.0’s union is seriously broken. This has been fixed in newer versions, but unfortunately i can’t upgrade MySQL on this machine.
Update Initially i wrote here that PostgreSQL supports inline views, but some google research seems to indicate otherwise. And apparently MySQL supports inline views as of version 4.1. Seems it’s time to upgrade MySQL to version 4.1 instead of moving to PostgreSQL.
Another update Joseph commented that PostgreSQL does support inline views. I guess they’re not called inline views in PostgreSQL though. When you search in the PostgreSQL documentation for inline view nothing helpfull comes up.
Another update Inline views are called sub-selects in PostgresSQL.