I want to write a create table script based on certain conditions of column values in the Oracle table.
For example I have a table called A and in this table we have 3 columns Country, Country Code and Country Short Name.
If Country column has a value then Country Code and Country Short Name columns may or may not have values.
If Country column not have a value then Country Code and Country Short Name columns have to be mandatory.
How can I write a create table script for this in Oracle DB?

create table,insertandNULL.