create procedure [dbo].[InsertRequestLog]
(
	  @SearchEngineID tinyint	
	, @RequestID bigint
	, @TaskTypeID tinyint
	, @RequestObjectID tinyint
	, @Status tinyint
	, @SubmitTime datetime  = getdate
	, @LastModified datetime = getdate
)	
AS
注意,方法名后(这里是getdate)后加括号

相关文章:

  • 2022-12-23
  • 2021-07-08
  • 2021-06-12
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
  • 2021-08-02
猜你喜欢
  • 2022-12-23
  • 2021-09-05
  • 2021-05-26
  • 2021-04-15
相关资源
相似解决方案