在MS-SQL Server中,是否可以将参数传递给DEFAULT
函数,或以某种方式将DEFAULT
值基于记录中插入的值?
您可以将一个函数指定为MS-SQL Server中列的DEFAULT值。使用这个,我试图实现以下目标。对于具有研究ID和患者ID的表格,我想在该研究中自动分配新的患者编号。
CREATE TABLE [dbo].[PATIENT_STUDY](
[PatientStudyID] [int] IDENTITY(1,1) NOT NULL,
[PatientID] [int] NOT NULL,
[StudyID] [int] NOT NULL,
[PatientCode] [varchar(30)] NULL,
[ActiveParticipant] [tinyint] NULL -- 1=yes
)
-- set function as DEFAULT for column PatientCode
ALTER TABLE PATIENT_STUDY
ADD CONSTRAINT
DF_PATIENT_STUDY_CODE
DEFAULT([dbo].[fn_Generate_PatientCode]())
FOR PatientCode
GO
因此,例如当患者被添加到STID = 67时(例如,使用学习代码" 012"),并且该研究的最后一个患者代码是" 012-00024",那么下一个患者代码应为" 012-00025"。
ID PatientID StudyID PatientCode Active
--- --------- ------- ----------- -------
101 92 65 '009-00031' 1
102 93 66 '010-00018' 1
103 94 67 '012-00023' 1
104 95 67 '012-00024' 1
我知道这可以通过INSERT
触发器实现,但我想知道它是否也可以使用DEFAULT,因为这是一个更简洁的解决方案,更易于维护。
我已尝试过以下内容。
CREATE FUNCTION [dbo].[fn_Generate_PatientCode]()
RETURNS VARCHAR(10) -- for example "012-00345"
AS
BEGIN
-- variables
DECLARE @Code_next INT
DECLARE @Code_new VARCHAR(10)
-- find values of current record, how?
DECLARE @STID INT
SET @STID = ?? -- How to determine current record? <--------------------- !!
-- determine the studycode, example '023-00456' -> '023'
SET @StudyCode = (SELECT StudyCode FROM Study WHERE StudyID = @STID)
-- determine max study nr per study, example '123-00456' -> 456
SET @Code_next = (SELECT MAX(SUBSTRING(PatientCode, 5, 5))
FROM PATIENT_STUDY
WHERE IsNumeric(SUBSTRING(PatientCode, 5, 5)) = 1
AND StudyID = @STID
) + 1 -- get next number
-- check if first patient in this study
IF (@Code_next is null)
BEGIN
SET @Code_next = 1
END
-- prefix with zeroes if needed
SET @Code_new = @Code_next
WHILE (LEN(@Code_new) < 5) SET @Code_new = '0' + @Code_new
-- build new patient code, example '012-00025'
SET @Code_new = @StudyCode + '-' + @Code_new
-- return value
RETURN @Code_new
END
答案 0 :(得分:1)
不,我认为没有触发器就可以做到。