我最近也遇到同样问题,我是在本地数据库执行的,我电脑上的数据库和同学的是完全一样的(包括数据一模一样)执行同一个语句得到的结果中有个布尔值不一样!完全不能理解!我俩唯一不同的就是电脑我是xp他是win7!
执行select Spotent.*,if(src.id,1,0) from Spotent left join src on Spotent.id=src.spotentid where id_Splan = '8a96826651f68b420151f6aaa25d02c3' order by type desc, Spotent.id asc这句我的if(src.id,1,0) 值为0(是错的),同学的为1。若是改成下面这样就都正确
执行select Spotent.*,if(src.spotentid,1,0) from Spotent left join src on Spotent.id=src.spotentid where id_Splan = '8a96826651f68b420151f6aaa25d02c3' order by type desc, Spotent.id asc我们的就都为1(都正确)。
是不是权限不一样,访问数据库的权限不同,能调出的结果就会不一样
检查下数据库连接字符串试试
数据库是否一样?访问数据库的权限是否一致?
这个只能跟踪一下,看看执行的语句是不是一样