摘要:
首先,我们创建一些测试数据。 if OBJECT_ID('Tempdb.dbo.#Tmp') is not null drop table #Tmp create table #Tmp ( name nvarchar(10) ) insert into #Tmp select N'张三' union 阅读全文
摘要:
1、判断表是否存在 select * from sysobjects where id = object_id(表名) and OBJECTPROPERTY(id, N'IsUserTable') = 1 2、判断视图是否存在 select table_name from information_s 阅读全文
摘要:
<!-- 第一种 --> <connectionStrings> <add name="connString" connectionString="server=.;uid=sa; pwd=123456; database=SchoolDB;"/> </connectionStrings> <!-- 阅读全文
摘要:
处理百万级以上的数据提高查询速度的方法: 1.应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。 2.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 3.应尽量避免在 where 子句中对字段进行 n 阅读全文
摘要:
using Newtonsoft.Json.Linq;using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Text;using Sy 阅读全文
摘要:
一、下载SQL Server 2008 R2安装文件 ed2k://|file|cn_sql_server_2008_r2_enterprise_x86_x64_ia64_dvd_522233.iso|4662884352|1DB025218B01B48C6B76D6D88630F541|/ 二、将 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Collections; using System.Data; using System.Data.SqlClient; using Sys 阅读全文
摘要:
一、千分位转换位整数 var sum = '2,034,300';var x = sum.split(",");var plan_sum = parseFloat(x.join(""));输出的结果就是“2034300”; 二、整数转换成千分位 var TextBox8_all = "1234040 阅读全文
摘要:
中科大镜像: http://centos.ustc.edu.cn/centos/7/isos/ 清华大学镜像:http://mirror.tuna.tsinghua.edu.cn/centos/7/isos/ 阅读全文
摘要:
1.在数据库中新建查询,NewFile是数据库名称(可更改),.mdf,.ldf放在对应得C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA对应得数据文件下,执行脚本即可 USE master;GOCREATE D 阅读全文