what is difference between
select * from dbo.persons where LastName='lkjh';
select * from dbo.persons where LastName like 'lkjh';
both retrieves the same values ,both uses exact values to retrieve dta not any patterns and which one is faster?
what is difference between
select * from dbo.persons where LastName='lkjh';
select * from dbo.persons where LastName like 'lkjh';
both retrieves the same values ,both uses exact values to retrieve dta not any patterns and which one is faster?