码迷,mamicode.com
首页 >  
搜索关键字:returns    ( 2350个结果
sql的padleft
/*SELECT dbo.fn_PadLeft('8', '0', 6) */create function fn_PadLeft(@num nvarchar(16),@paddingChar char(1),@totalWidth int)returns nvarchar(16) asbegin....
分类:数据库   时间:2015-06-25 17:18:20    阅读次数:364
50%记录的函数
ALTER FUNCTION [dbo].[fu_GetCaption](@Stage nvarchar(50),@T_stage_weeks int,@S_stage_months int,@RowNum int --第几行)RETURNS nvarchar(260)ASBEGINDeclare ...
分类:其他好文   时间:2015-06-25 17:00:48    阅读次数:184
Number of 1 Bits
Description:Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as theHamming weight).For example, t...
分类:其他好文   时间:2015-06-24 23:54:36    阅读次数:155
PostGreSQL存储过程
1返回结果集的存储过程-- drop FUNCTION getall();CREATE or REPLACE FUNCTION getall()RETURNS SETOF users AS$BODY$SELECT * from users;$BODY$language SQL; -- 这里使用的SQ...
分类:数据库   时间:2015-06-24 18:51:43    阅读次数:162
Function 1 - hello world
Function 1 - hello worldMake a simple function calledgreetthat returns the most-famous "hello world!".Although this has been thought as a simple exerc...
分类:其他好文   时间:2015-06-24 14:36:42    阅读次数:86
js切割数字
1 /*** 2 * @returns array 3 * @param int j数值 4 * @param int 返回数组位数 5 * @切割数字 6 * */ 7 function setNum(j,h){ 8 h=parseInt(h); 9 j=parseIn...
分类:Web程序   时间:2015-06-24 10:53:59    阅读次数:140
mysql计算经纬度两点之间的距离(转载)
DELIMITER $$DROP FUNCTION IF EXISTS `fun_distance`$$CREATE FUNCTION `fun_distance`(lat1 float,lng1 float,lat2 float,lng2 float) RETURNS floatBEGINset ...
分类:数据库   时间:2015-06-24 10:48:25    阅读次数:192
使用mysql存储过程递归tree(如一个上级下面的所有下级的所有下级。。。。)
创建存储过程DROP FUNCTION `getSubAgent`;CREATE FUNCTION `getSubAgent` (agentId INT)RETURNS VARCHAR(4000)BEGINDECLARE sTemp VARCHAR(4000);DECLARE sTempChd VA...
分类:数据库   时间:2015-06-24 10:32:58    阅读次数:361
判断是否微信 IPhone 打开
/** * 判断是否微信 * @returns {boolean} */ function isWeiXin(){ var ua =window.navigator.userAgent.toLowerCase(); var s = ua.match(/MicroMessenger\/([\d.]+)?/i); if(s == null){ return fal...
分类:微信   时间:2015-06-20 19:40:05    阅读次数:297
sicp Exercise 1.3 强行解答
题目如下: Exercise 1.3. Define a procedure that takes three numbers as arguments and returns the sum of the squares of the two larger numbers.   看到题目后,我个傻逼就严格遵循题意去解题了,在三个数中找到前两个大数,求其和。(解完后看网上的答...
分类:其他好文   时间:2015-06-19 16:57:49    阅读次数:113
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!