11:17:58 SQL> select * from tt;COL1
----------
01
0101
0102
010201
010202已用时间:  00: 00: 00.16
11:18:04 SQL> select * from tt
11:18:07   2  where length(col1)=(select max(length(col1)) from tt tb
11:18:07   3  where tb.col1 like '%'||tt.col1||'%');COL1
----------
0101
010201
010202已用时间:  00: 00: 00.16
11:18:07 SQL>