Answers for "oracle sql add not null constraint to column"

SQL
1

how to add not null constraint in sql

ALTER TABLE table_name MODIFY column_name datatype NOT NULL;
Posted by: Guest on April-05-2021
0

oracle alter table add not null constraint

ALTER TABLE table_name MODIFY ( column_name NOT NULL);
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on April-21-2021

Code answers related to "oracle sql add not null constraint to column"

Code answers related to "SQL"

Browse Popular Code Answers by Language