I have a table,
create table a(
id_a number(5) not null,
name varchar2(15) not null,
address varchar2(30),
phone varchar2(15),
constraint pk_a primary key (id_a)
);
I want add constraint check at phone. example. phone is 08175210868
I want to only be input with +628175210868
sorry my bad english.
You can try the below