I am not very experienced in pl/sql. I need to write a script that selects only the message numbers that repeat more than 10 times.
create table message_table (
msg_date date,
trn_num number(10),
trn_hist_no number(4),
trn_sub_hist_no(4),
trn_timestamp date);
When the first 4 columns are identical I want to print the row only when there are 10 or more rows where only the timestamp differs.
Tnaks in advance.
create table message_table (
msg_date date,
trn_num number(10),
trn_hist_no number(4),
trn_sub_hist_no(4),
trn_timestamp date);
When the first 4 columns are identical I want to print the row only when there are 10 or more rows where only the timestamp differs.
Tnaks in advance.