在asp中access与sqlserver查询的不同 作者:转载 转贴自:转载 点击数:2589 文章录入: zhaizl
要查询以isuse是否为真为条件在access中可直接使用
rs.open "select * from classroom where isUse",conn,1,1
而数据库是sqlserver时必须用
rs.open "select * from classroom where isUse=1 ",conn,1,1
才行