Skip to content

Instantly share code, notes, and snippets.

@alefra88
Created March 10, 2025 03:21
Show Gist options
  • Save alefra88/c1dc5d55e24264664db5fc53a70e988d to your computer and use it in GitHub Desktop.
Save alefra88/c1dc5d55e24264664db5fc53a70e988d to your computer and use it in GitHub Desktop.
crear tabla en oracle db con pk incremental
CREATE TABLE customers (
customer_id NUMBER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
customer_name VARCHAR2(250)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment