Time : 06:24:54 SQLSTATE[42S22]: Column not found: 1054 Unknown column 'co.DISTCRICT' in 'where clause' Raw SQL : select p.PARTYCODE, p.NAME,co.ADD1,co.ADD2,co.ADD3,co.PINCODE,co.PHONE,cscc.NAME as cityname,cscd.NAME as districtname,cscc.CODE,cscs.shortname ,cscs.NAME as statename,cscco.NAME as countryname, cp.NAME as cpname,cp.MOBILENO from partydetail p inner join subscription ss on ss.PARTY=p.PARTYID inner join contact co on p.PARTYID=co.PARTY left outer join contactperson cp on cp.PARTY=p.PARTYID left outer join countrystatecity cscc on cscc.COUNTRYSTATECITYID=co.CITY left outer join countrystatecity cscd on cscd.COUNTRYSTATECITYID=co.DISTRICT left outer join countrystatecity cscs on cscs.COUNTRYSTATECITYID=co.STATE left outer join countrystatecity cscco on cscco.COUNTRYSTATECITYID=co.COUNTRY where 1=1 and ((ss.renewalEditions is null and ss.toDate is null) or (ss.fromDate!='' and ss.toDate is null) or ss.renewalEditions>=1) and ss.ISCANCEL is null and co.STATE=21 and co.DISTCRICT=397 and co.CITY=1474 and co.addresstype=350 group by p.PARTYID order by cscs.CODE,cscc.CODE asc