Are you ready to take your data science career to the next step, or break into data science? With Springboard’s Data Science Career Track, you’ll master data science topics, have personalized career guidance, weekly calls with a data science expert, and a job guarantee.
select count(*)
from table1
where dipose like '%sanctions%'
if you want the word "sanctions" to appear in the results, you can hardcode that
select 'sanctions' , count(*)
from table1
where dipose like '%sanctions%'