“慢生活”不是懒惰,放慢速度不是拖延时间,而是让我们在生活中寻找到平衡。网站首页程序人生
sqlserver2008 QUOTED_IDENTIFIER 值為ON的理解
发布时间:2022-01-03 22:35:02作者:雪饮
![[!--pagekey--]](/e/data/images/notimg.gif)
/*create table distinct( id int not null constraint pk_1 primary key, value varchar(255), flag int )*/--distinct是关键字创建失败/*create table `distinct`(
阅读全文>>sqlserver2008 存儲過程定義參數,接收參數
发布时间:2022-01-03 22:33:17作者:雪饮
![[!--pagekey--]](/e/data/images/notimg.gif)
-- ================================================-- Template generated from Template Explorer using-- Create Procedure (New Menu).SQL---- Use the Specify Val
阅读全文>>sqlserver2008 select在存儲過程中使用select查詢
发布时间:2022-01-03 22:31:40作者:雪饮
![[!--pagekey--]](/e/data/images/notimg.gif)
-- ================================================-- Template generated from Template Explorer using:-- Create Procedure (New Menu).SQL---- Use the Specify Va
阅读全文>>sqlserver2008 peocedure_调用 存儲過程的調用
发布时间:2022-01-03 22:29:36作者:雪饮
![[!--pagekey--]](/e/data/images/notimg.gif)
USE [ceshi_db]GO DECLARE @return_value int EXEC @return_value = [dbo].[test_select_params] @id = 1, @name = 'name2' SELECT 'Return Value' = @return_value GO
阅读全文>>sqlserver2008-go的理解
发布时间:2022-01-03 22:28:36作者:雪饮
![[!--pagekey--]](/e/data/images/notimg.gif)
每个被GO分隔的语句都是一个单独的事务,一个语句执行失败不会影响其它语句执行。
阅读全文>>