My table create script just like below:
CREATE TABLE REALWAY.Province (
ProvID CHAR(2) NOT NULL,
ProvName VARCHAR2(20) NULL
);
ALTER TABLE REALWAY.Province
ADD ( CONSTRAINT XPKProvince PRIMARY KEY (ProvID) ) ;
I have created a message table and can see the primary key CONSTRAINT message, but can't see the message when the ProvID column is null.
Thanks
------------------
CREATE TABLE REALWAY.Province (
ProvID CHAR(2) NOT NULL,
ProvName VARCHAR2(20) NULL
);
ALTER TABLE REALWAY.Province
ADD ( CONSTRAINT XPKProvince PRIMARY KEY (ProvID) ) ;
I have created a message table and can see the primary key CONSTRAINT message, but can't see the message when the ProvID column is null.
Thanks
------------------