比如:

    1. select * from dual where xx like '%%';

    查询不出值,解决:

    1. select * from dual where nvl(xx,' ') like '%%';