How should I be able to count the word "asdf" in the variable aaa with value "asdf_dd_adf34asdf_sdf"?
DECLARE @aaa varchar;
SET @aaa = 'asdf_dd_adf34asdf_sdf';
How should I be able to count the word "asdf" in the variable aaa with value "asdf_dd_adf34asdf_sdf"?
DECLARE @aaa varchar;
SET @aaa = 'asdf_dd_adf34asdf_sdf';