does it makes sense to do SP for simple queries like select * from users
Posted
by Omu
on Stack Overflow
See other posts from Stack Overflow
or by Omu
Published on 2010-06-10T13:05:31Z
Indexed on
2010/06/10
13:12 UTC
Read the original article
Hit count: 230
sql
|sql-server
is it going to be faster if instead of doing
select * from users where id = 1
or
delete from users where id = 1
or
select count(*) from users
I would create a SP for it ?
© Stack Overflow or respective owner