select * from grdm where sz like '*a*'

解决方案 »

  1.   

    select * from grdm where sz like '%a%'
      

  2.   

    Access中模糊查询好像要用%号吧
     
    select * from grdm where sz like '%a%'
      

  3.   

    第一步:  建立ADO数据库连接,申明记录集合
    第二步:  执行查询
       select * from grdm where sz like '*a*'
    (注意这里操作系统是WIN2000效果更好,还有根据数据库的不一样,通配符号不一样)
    第三步:  将返回记录集显示
      

  4.   

    access 97   用一楼
    access 2000 用二楼