2
votes
How do you priortize multiple triggers of a table?
Use sp_settriggerorder. You can specify the first and last trigger to fire depending on the operation.
sp_set …
10
votes
How to return multiple values in one column (T-SQL)?
You can use a function with COALESCE.
CREATE FUNCTION [dbo].[GetAliasesById]
(
@userID int
)
RETURNS varchar(max)
AS
BEGIN
declare @output varchar(max)
select @output = …
