How to detect if Oracle database supports auto increment?
I'm working on a project in which we may be using an Oracle 11g or an Oracle 12c database depending on what's available in various environments -- not ideal I know :( My project is a Spring Boot application and I'm using Liquibase to manage the database objects. My problem is that if I'm running on an Oracle 12c database, I'd like to take advantage of auto incrementing IDs while on Oracle 11g, I'll have to rely on a trigger and a sequence. Is there a way to detect if the current version of Oracle supports auto incrementing or do I have to look at the version number? The SQL that I currently