Pitching Drills  

Posted by ReelTym
July 16,
2011


Cat Osterman and Jennie Finch Tips  

Posted by ReelTym
July 16,
2011


2011 District 9 Junior All Start Fast Pitch Softball Tournament  

Posted by ReelTym
July 14,
2011

Using PATINDEX to find character in a string.  

Posted by ReelTym
July 12,
2011

declare @test table ( id int identity(1,1) primary key clustered, value varchar(10) )

insert into @test (value)
    select null union all
    select '' union all
    select '1' union all
    select '-' union all
    select '1.2' union all
    select '1,23' union all
    select ',' union all
    select '.'

select * from @test where patindex( '%[,.-]%', value ) > 0

-- Should return

id          value
----------- ----------
4           -
5           1.2
6           1,23
7           ,
8           .