Can any one give me an idea about how to filter the name that starts with j without using the Like statement in SQL.
declare @temp table (name varchar(100)) insert into @temp select 'John' union all select 'Jake' union all select 'Max' union all select 'Alex' select * from @temp where left(name, 1) = 'J'
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.