Hi
I have a table with many child table
example:
create table t_parent (id number);
create table t_child01 (id number,
id_tparent number
CONSTRAINT fk_child01
FOREIGN KEY (id_tparent)
REFERENCES t_parent(id) );
create table t_child02 (id number,
id_tparent number
CONSTRAINT fk_child02
FOREIGN KEY (id_tparent)
REFERENCES t_parent(id) );
create table t_child03 (id number,
id_tparent number
CONSTRAINT fk_child03
FOREIGN KEY (id_tparent)
REFERENCES t_parent(id) );
What best way to see is there some table there some record ?
I think count(id) each table, Is it best way ?
TIA