摘要:
CREATE FUNCTION [dbo].[f_ClearZero] ( @inValue VARCHAR(50) ) RETURNS VARCHAR(50) AS BEGIN DECLARE @returnValue VARCHAR(20) IF ( @inValue = '' ) SET @r 阅读全文
摘要:
格式 CREATE FUNCTION function_name(@parameter_name parameter_data_type) --CREATE FUNCTION 函数名称(@参数名 参数的数据类型) RETURNS date_type --返回返回值的数据类型 [WITH ENCRYP 阅读全文
摘要:
1.自增主键 create table test( id int generated always as identity (cache 100 START WITH 1 INCREMENT BY 1) primary key , name varchar(100) ) CREATE TABLE G 阅读全文