Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table ravala (order_id number, ship_status varchar2(1),
constraint order_id_ship_status_UK unique (order_id, ship_status));
Table created.
insert into ravala values (1,null);
1 row created.
insert into ravala values (1,null);
*
ERROR at line 1:
ORA-00001: unique constraint (TEST.ORDER_ID_SHIP_STATUS_UK) violated