Wesley13 Wesley13
3年前
SQL 拼音搜索
【个人收藏】1.将汉字转拼音首字母自定义FunctiondropfunctionF_GET_PINYINCREATEORREPLACEFUNCTIONF_GET_PINYIN(P_NAMEINVARCHAR2)RETURNVARCHAR2ASV_COMPAREVARCHAR2(50);
Wesley13 Wesley13
3年前
java Excel导入导出工具类
本文章,导入导出依赖提前定义好的模板packagecom.jd.nb.wishplat.man.util;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileNotFoundException;import
菜鸟小欧 菜鸟小欧
4年前
c语言成绩管理系统简
include<stdio.hinclude<stdlib.hdefineN50include<string.hinclude<conio.hintmax,min;floatave;structstudentintsx,yw,total;charname10,xh12;;//定义基本信息structstudentstuN
Stella981 Stella981
3年前
C#winform中数据库的连接
一、连接VS2013自带的本地数据库usingSystem.Data.SqlClient;首先定义一个连接字符串publicstaticstringConnectString"Server(localdb)\\Projects;InitialCatalogTest;IntegratedSecurity
Easter79 Easter79
3年前
SQLSERVER存储过程基本语法使用
一、定义变量简单赋值declare@aintset@a5print@a使用select语句赋值declare@user1nvarchar(50)select@user1'张三'print@user1decla
Caomeinico Caomeinico
3年前
juniper SRX 地址端口映射设置
需求说明:外网IP:123.123.123.123:22222映射内网10.100.200.22:22定义内网地址池(ssh22)和端口号setsecuritynatdestinationpoolssh22address10.100.200.22/32setsecuritynatdestinationpoolssh22add
Stella981 Stella981
3年前
C++ lambda函数
lambda函数lambda函数是什么?还是直接看代码比较容易理解:intmain(){  inta1;  intb2;  //定义一个lambda函数  autosum\\(intx,inty)int{    returnxy;  
Easter79 Easter79
3年前
SpringMVC3 DateTimeFormat
SpringMVC是支持注解日期转换的,转换格式可自定义,格式不符会包404@RequestParam(value"startDate",requiredfalse)@DateTimeFormat(pattern"yyyyMMdd")DatestartDate,@RequestParam(value
Wesley13 Wesley13
3年前
DAY83
一、forms组件基本使用视图层第一步:导入formsfromdjangoimportformsfromdjango.formsimportwidgets第二步:定义的类classUser_form(forms.Form):第
Easter79 Easter79
3年前
TiDB 源码阅读系列文章(十一)Index Lookup Join
什么是IndexLookupJoinNestedLoopJoin在介绍IndexLookupJoin之前,我们首先看一下什么是NestedLoopJoin(NLJ)。NLJ的具体定义可以参考Wikipedia(https://www.oschina.net/