`
文章列表
oracle 删除重复行 有表:   create table t_test1(      id        number,      name      varchar2(50),      age       number,      birthday  date  );   1、选择出重复的行   select a.* from t_test1 a   where rowid <> (select max(rowid)                      from t_test1 b                     where a.id ...
Global site tag (gtag.js) - Google Analytics