select * from aaa where substr(abc,1,1) not in ('0','1','2','3','4','5','6','7','8','9')

解决方案 »

  1.   

    select * from tbnamne
    where (aaa like 'a%' or aaa like 'b%' or aaa like 'c%')
    and length(replace(translate(aaa,'0123456789','          '),' ',''))<length(aaa);
      

  2.   

    select abc from aaa
    where UPPER(substr(col,1,1))<>LOWER(substr(col,1,1));
      

  3.   

    可能理解错了select * from aaa
    where instr(abc,1,1) > '9' or instr(abc,1,1)<'0';
      

  4.   

    select * from aaa
    where length(abc)-length(ltrim(abc, 'abc'))>0