update
set numHases = len(replace(col, '#', '# ')) - len(col)
This will give you the no. of hashes each cell has.
Or to select rows with more than 2 hashes,
select * from abc
where len(replace(col, '#', '# ')) - len(col) > 2
↧