假如查询设备当中,部门是‘信息中心’和‘机房管理’,设备类型是‘台式计算机’,品牌是‘联想’和IBM的机器的信息
语句怎么写?
下面是我写的:
select * from pro_zc where bfbz='否' and bm='信息中心' or bm='机房管理' and pp='联想' or pp='IBM'and lx='台式计算机
select * from pro_zc where bfbz='否' and (bm='信息中心' or bm='机房管理' ) and (pp='联想' or pp='IBM') and lx='台式计算机