I'm developing a library and want to display the alphabets across the
screen. When a user clicks on one of the alphabets I want all titles
beginning with that letter to appear on the screen.
How would I write this stored procedure?
My table is called Titles
Fields:
Title ID
Titles
Thanks!
The select statement migth need some improvements, I think that would result in a full table-scan. Have a look at you execution plan and optimize as required.
CREATE PROCEDURE st_Ret_MyStuff(@.characterClickedas varChar(1))ASBEGINSET NOCOUNT ON;SELECT yourColumnsFROM titlesWHEREleft(titleCol, 1)=@.characterClicked;ENDGO
Cheers!
/Eskil
|||Thanks that works!
No comments:
Post a Comment