Advertisement
Advertisement
| 08.29.2008 at 02:50AM PDT, ID: 23688308 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: |
ALTER PROCEDURE [dbo].[usp_ReturnSearchResults] -- Add the parameters for the stored procedure here @SearchText nvarchar(max), @Username nvarchar(50), @LangID char(3), @UserPostalCode char(7) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; DECLARE @userLat decimal(16,12); DECLARE @userLong decimal(16,12); SELECT @userLat=LATITUDE, @userLong=LONGITUDE FROM postalCodes WHERE POSTAL_CODE = @UserPostalCode Select txtBusinessID, txtBusinessName, imageLogo, txtCity, Bus_Lang_Desc.ShortDes as [ShortDesc], dbo.DistanceAssistant(@userLat,@userLong,LATITUDE,LONGITUDE) AS [distance] FROM dbo.businesses, dbo.Bus_Lang_Desc, dbo.PostalCodes WHERE Bus_Lang_Desc.LanguageID = @LangID AND businesses.txtBusinessID = Bus_Lang_Desc.BusID AND businesses.txtBusinessID = @SearchText AND businesses.txtPostalCode = PostalCodes.POSTAL_CODE ORDER BY [distance] END |