摘要: 字符串函数 日期函数 数学函数 系统函数 阅读全文
posted @ 2020-08-06 10:00 *每天多学一点点* 阅读(96) 评论(0) 推荐(0) 编辑
摘要: ISNULLSQL查询示例SELECT ISNULL 使用指定的替换值替换 NULL。 语法 :ISNULL ( check_expression , replacement_value ) 参数 check_expression 将被检查是否为 NULL的表达式。如果不为NULL,这直接返回 该值 阅读全文
posted @ 2020-08-06 09:49 *每天多学一点点* 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 1、快速查找某张表在某个存储过程中被使用的方法,以下代码只需更改红色表名即可: SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id=o.id WHERE c.TEXT LIKE '%Re 阅读全文
posted @ 2020-08-04 11:29 *每天多学一点点* 阅读(156) 评论(0) 推荐(0) 编辑
摘要: USE [riskmain]GO /****** Object: UserDefinedFunction [dbo].[fnSplit] Script Date: 2020/7/23 12:05:46 ******/SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER 阅读全文
posted @ 2020-07-23 17:37 *每天多学一点点* 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 用户表结构中包含用户及其子用户,使用以下方法递归查询当前用户及其子用户信息 with Tusers as(select UserID,PUserID from [Base].[WGUser] where UserID=1union allselect B.UserID,B.PUserID from 阅读全文
posted @ 2020-07-23 17:36 *每天多学一点点* 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1、程序需定期编译通过后上传SVN,每天可上传多次,根据个人程序开发进度决定,但每天晚下班前必须将当天的程序编译调试通过并上传SVN。每天早上上班首先需要更新SVN最新版本。 上传的工作流程应该是,更新——编译运行——上传。这个工作流程那一步也不能缺少。更新是在把 别人提交的代码下载下来,看看和自己 阅读全文
posted @ 2020-07-23 10:05 *每天多学一点点* 阅读(431) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Net.Http;using System.Web;using System.Web.Mvc;using WebApplication4.Mode 阅读全文
posted @ 2020-07-06 01:03 *每天多学一点点* 阅读(474) 评论(0) 推荐(0) 编辑
摘要: WebApi前端调用 HTML代码: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-3.2.1.js"></script> </head> <body> <in 阅读全文
posted @ 2020-07-05 21:58 *每天多学一点点* 阅读(883) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="css/login.css" /> <script src="js/jque 阅读全文
posted @ 2020-06-28 23:16 *每天多学一点点* 阅读(201) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel.Design;using System.Linq;using System.Text;using System.Threading.Tasks; nam 阅读全文
posted @ 2020-06-27 19:30 *每天多学一点点* 阅读(187) 评论(0) 推荐(0) 编辑