When i run this query SELECT * FROM site WHERE Region=('CIRCLE_GUJ_NORTH') It returns the row but when i put this in region it does not work, SELECT * FROM site WHERE Region=('CIRCLE_C_MUMBAI')
I am firing queries from phpmyadmin. what is the problem in CIRCLE_C_MUMBAI. I have made sure that the region is present in table rows. The column type is VARCHAR(1000).
I also tried this select * from site where Region IN ('CIRCLE_C_MUMBAI','CIRCLE_GUJ_NORTH')
This only returns rows from CIRCLE_GUJ_NORTH
Double check spelling. You’d be amazed how often mispellings are overlooked (the human brain can rearrange letters to make them human readable subconsciously)