1
Reply

Like usage in sql sentence

Erdinc Kolukisa

Erdinc Kolukisa

Oct 16 2010 3:58 AM
1.8k

hey guys..i dont know where is my mistake in my sql sentence..i cant get the result when i give the variable..but it works fine without Like word..but it doesnt give the result what i need...here is my proc
ALTER
procedure [dbo].[sp_SearchFirm]
(

@aranan_firma
nvarchar(50)
)

as

Begin
Select firma_adi From Firmalar Where firma_adi LIKE '%@aranan_firma%'
End

Answers (1)