mysql delimiterdelimiter:分隔符escape character:转义符mysql delimiter刚才试图搞mysql的存储过程,被郁闷了一回,最简单的存储过程,只要加上begin 和end就有莫名其妙的错误。比如 CREATE PROCEDURE p() BEGIN ....
分类:
数据库 时间:
2014-06-29 06:35:31
阅读次数:
187
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2014-06-28 14:31:12
阅读次数:
201
递归调用示例算法1.10 求取数组元素的最大值(递归算法) procedure MAX1(i) // 查找数组A中最大值元素,并返回该元素的最大下标。// global integer n,A(1:n),j,k integer i if i A(j) then k←i else k←j endif ...
分类:
其他好文 时间:
2014-06-20 21:53:02
阅读次数:
187
最近遇到一个需求涉及存储过程,被突然问题到如何同步问题问到了,赶紧补课学习一下。首先,先看一下trigger、procedure和event的定义都是什么?trigger:触发器是一个被指定关联到一个表的数据对象,当对个表的特别事件出现时,它被激活。procedure:是一组为了完成特定功能的SQL...
分类:
其他好文 时间:
2014-06-20 21:20:34
阅读次数:
254
本文讨论4个知识点,1. fixed_date参数2. 赋权技巧3. procedure执行的方式4. PL/SQL中要注意的几个地方fixed_date参数客户想修改oracle的 系统时间做测试,但oracle的默认系统时间是读取其所在server的系统时间的,所以不能随便修改。不过可以修改fi...
分类:
数据库 时间:
2014-06-20 15:53:05
阅读次数:
233
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2014-06-20 14:43:53
阅读次数:
137
未用SQL CTE and case when:ALTER PROCEDURE [dbo].[usp_rptDropboxBatchSummary1] @DataSource varchar(10)='ALL', @BatchNum varchar(8)='ALL'...
分类:
其他好文 时间:
2014-06-20 14:09:23
阅读次数:
284
CREATE PROCEDURE [dbo].[PROC_GetPriviousAndNextDetailContent]@Index varchar(20),--表主键@Table varchar(100),--从哪个表获取数据@Columns varchar(100),--需要获取哪些字段@Or...
分类:
数据库 时间:
2014-06-18 00:01:07
阅读次数:
242
(4)UpdateCharRec 该函数的源码分析如下: procedure TTextLayoutNG.UpdateCharRec(const ACanvas: TCanvas; NeedBitmap: Boolean; var NewRec: PCharRec; HasItem: Boolean...
分类:
其他好文 时间:
2014-06-17 23:40:36
阅读次数:
373
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2014-06-17 23:38:04
阅读次数:
341