Created
March 10, 2025 03:21
-
-
Save alefra88/c1dc5d55e24264664db5fc53a70e988d to your computer and use it in GitHub Desktop.
crear tabla en oracle db con pk incremental
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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