Computer Science, asked by dhritishman10, 9 months ago

it is possible to add a null or not null constraint to a table already loaded with data​

Answers

Answered by charlie1505
8

Answer:

yes

Explanation:

It is possible to add a NOT NULL constraint to an existing table by using the ALTER TABLE statement.

1

ALTER TABLE table_name MODIFY ( column_name NOT NULL);

Note: same query will be work for null constraint

Answered by sunitagupta54637
2

Answer:Yes

Explanation:

Similar questions