搜索到与相关的文章
Oracle

oracle pl/sql 函数中使用数组

数组定义:typet_numberisvarray(100)ofnumbernotnull;举例:createorreplacefunctiongettaxfeeforreport(p_stanidnumber,p_idvarchar2,p_expectfieldvarchar2)returnvarchar2is/*函数功能:通过业务编号汇总出该业务的税费信息。函数版本:v_20090424每次最多移交100笔业务*/--typet_numberstabi

系统 2019-08-12 01:54:56 2874

数据库相关

mongodb step by step

http://www.mongodb.org/downloadshttp://docs.mongodb.org/ecosystem/tutorial/download-and-compile-cpp-driver/http://docs.mongodb.org/manual/tutorial/getting-started/http://docs.mongodb.org/manual/tutorial/getting-started/#connect-to

系统 2019-08-12 01:54:41 2874

数据库相关

SQL_sql的简单查询

***********************************************声明***********************************************************************原创作品,出自“深蓝的blog”博客,欢迎转载,转载时请务必注明出处,否则追究版权法律责任。深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/399077

系统 2019-08-12 01:53:02 2874

数据库相关

POJ 3415 Max Sum of Max-K-sub-sequence (线

MaxSumofMax-K-sub-sequenceTimeLimit:2000/1000MS(Java/Others)MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):5084AcceptedSubmission(s):1842ProblemDescriptionGivenacirclesequenceA[1],A[2],A[3]......A[n].Circlesequencemeansth

系统 2019-08-12 01:52:21 2874

数据库相关

SQL去掉小数点有效数字后的所有0

原文:SQL去掉小数点有效数字后的所有0第一种方法selectcast(2.5000000000000asreal)selectcast(2asreal)selectcast(2.00000asreal)第二种方法CREATEfunction[dbo].[ClearZero](@inValuevarchar(50))returnsvarchar(50)asbegindeclare@returnValuevarchar(20)if(@inValue='')s

系统 2019-08-12 01:33:14 2874

编程技术

模式匹配文本处理

使用正则表达式在System.TextRegularExpressionusingSystem;usingSystem.Text.RegularExpressions;classchapter8{staticvoidMain(){Regexreg=newRegex("the");stringstr1="thequickbrownfoxjumpedoverthelazydog";MatchmatchSet;intmatchPos;matchSet=reg.M

系统 2019-08-12 01:33:01 2874

数据库相关

subsonic操作实例

subsonic操作实例2011/03/1612:42一、查询1)简单查询一种方式(分解构造式)SubSonic.Queryquery=TPjWorkday.CreateQuery();query.SelectList=TPjWorkday.Columns.Year+","+TPjWorkday.Columns.Yearmonth+","+TPjWorkday.Columns.Workdays;query.AddWhere(TPjWorkday.Colum

系统 2019-08-12 01:32:51 2874

Linux

Linux上安装tomcat、jdk

一、tomcat【上传yum-yinstalllrzsz】1、tarzxvfapache-tomcat-7.0.57.tar.gz2、mvapache-tomcat-7.0.57tomcat3、cd/opt/tomcat/bin/4、vimcatalina.sh在最后一行加入:CATALINA_HOME=/opt/tomcat/5、启动tomcat/opt/tomcat/bin/catalina.shstop/opt/tomcat/bin/catalina

系统 2019-08-12 01:32:14 2874

各行各业

installshield 注册dll

functionOnFirstUIAfter()STRINGszTitle,szMsg1,szMsg2,szOpt1,szOpt2;NUMBERbOpt1,bOpt2;beginDisable(STATUSEX);bOpt1=FALSE;bOpt2=FALSE;if(BATCH_INSTALL)thenSdFinishReboot(szTitle,szMsg1,SYS_BOOTMACHINE,szMsg2,0);elseSdFinish(szTitle,s

系统 2019-08-12 01:31:39 2874

Python

(sklearn.gaussian_process+python实现)

1、高斯过程:scikit-learn(sklearn)官方文档scikit-learn(sklearn)官方文档中文版scikit-learn(sklearn)官方文档中文版(1.7.高斯过程)其他介绍:AVisualExplorationofGaussianProcesses看得见的高斯过程:这是一份直观的入门解读(上面中文翻译-机器之心)IntroductiontoGaussianProcesses-PartI从数学到实现,全面回顾高斯过程中的函数最

系统 2019-09-27 17:54:26 2873