mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 13:02:05 +03:00
Added tag tag1 for changeset 4c285537b335
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
-- =============================================
|
||||
CREATE PROCEDURE UpdateFriendLocationById
|
||||
@FriendID nvarchar
|
||||
AS
|
||||
BEGIN
|
||||
-- SET NOCOUNT ON added to prevent extra result sets from
|
||||
-- interfering with SELECT statements.
|
||||
SET NOCOUNT ON;
|
||||
|
||||
-- Insert statements for procedure here
|
||||
UPDATE [Friends]
|
||||
SET [Location] = GEOGRAPHY::Parse([LocationStr])
|
||||
WHERE Id = @FriendID
|
||||
END
|
||||
GO
|
||||
Reference in New Issue
Block a user