Dear All
Yes its possible.
Alter table reftab add constraint pk_reftab_col1 primary key;
Alter table reftab add constraint fk_reftab_col2 (col2) references reftab (clo1);
it will work....But there is no sence in doing so..u wll just make duplicate data in same table. Also it will increases the data redudancy...
Regards
Nikhil