22,300
社区成员




Select * from City_MX where ltrim(rtrim(CityID))=ltrim(rtrim('0915'))
Select top 1 * from City_MX where CityID='0915'
Select top 1 * from City_MX where CityID like '%915%'
--把0去掉,我怕你写成了o
Select top 1 * from City_MX where CityID like '%0915%'