declare @t table(id int,Name varchar(100))
insert @t select 1,'中国'
union all select 2,'American'
union all select 3,'japan'
union all select 4,'韩国'
select * from @t where patindex('%[A-Z]%',Name)>0
/*
id Name
----------- ---------
2 American
3 japan
(所影响的行数为 2 行)
*/