Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
Showing posts with label stored procedure for search functionality. Show all posts
Showing posts with label stored procedure for search functionality. Show all posts
create proc sp_search(@p varchar(20)) as begin select lastname from tblemployee where lastname is not null and lastname like @p+'%' end --exec sa_tstname c