33 lines
823 B
Transact-SQL
33 lines
823 B
Transact-SQL
USE [FabApprovalSystem]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[GetComments] Script Date: 11/21/2024 11:29:04 AM ******/
|
|
SET
|
|
ANSI_NULLS ON
|
|
GO
|
|
SET
|
|
QUOTED_IDENTIFIER ON
|
|
GO
|
|
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date,,>
|
|
-- Description: <Description,,>
|
|
-- =============================================
|
|
CREATE PROCEDURE [dbo].[GetComments] -- Add the parameters for the stored procedure here
|
|
@IssueID INT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from
|
|
-- interfering with SELECT statements.
|
|
SET
|
|
NOCOUNT ON;
|
|
|
|
-- Insert statements for procedure here
|
|
SELECT
|
|
C.*,
|
|
U.FirstName + ' ' + U.LastName AS UserName
|
|
FROM
|
|
Comments C
|
|
INNER JOIN Users U ON C.CommentedBy = U.UserID
|
|
WHERE
|
|
C.IssueID = @IssueID
|
|
ORDER BY
|
|
C.TimeStamp
|
|
END
|
|
GO |