摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace T2{ class Program { //常量(必须在声明时赋值,赋值后不能修改) //static void M... 阅读全文
摘要:
为了模拟并发环境,SQL SERVER中打开两个查询窗口(分别表示事务1、事务2)即可,并发用户用事务1,事务2简称测试表脚本:CREATE TABLE [Customer]( [CustID] [int] NOT NULL, [Fname] [nvarchar](20), [Lname] [nva... 阅读全文
摘要:
----------------常用的系统存储过程---------------execute sp_databases--查看服务器里的所有数据库exec sp_renamedb NetBarDB,abc--重命名数据库exec sp_tables--查询出当前环境下的对象列表exec sp_co... 阅读全文
摘要:
--------------输出----------------print 'hello world'--以文本形式输出select 'hello world'--以网格形式输出,也可以设置成以文本形式输出print 'abc'+'cde'print 3+5print 'ab'+5--出错,'ab'... 阅读全文
摘要:
--------------创建文件夹-----------------打开高级选项exec sp_configure 'show advanced options',1reconfigure--重启配置--开启xp_cmdshell功能(开启后能使用dos命令)exec sp_configure ... 阅读全文
摘要:
笛卡尔-------------笛卡尔积------------------select * from StuInfo,StuScoreselect * from StuInfo cross join StuScore--查询出有意义的行select * from StuInfo as a cros... 阅读全文
摘要:
------------------字符串函数------------------------charindex(要查找的字符串,被查找的字符串,开始查找的位置):返回要查找的字符串在被查找的字符串中的位置select charindex('sve','hello sve hi sve',1)--结... 阅读全文
摘要:
--------------select查询-------------------查询所有信息(方法一)select * from stuinfo --*号代表所有列--查询所有信息(方法二)select StuNo,StuName,StuAge,StuSex,address from stuinf... 阅读全文
摘要:
--复制数据表中的数据到另一个表中(另一个表必须是数据库中不存在的表)select * into temp1 from DeptInfo--只复制数据表结构,不复制数据select * into temp2 from DeptInfo where 1=2--将DeptInfo表中的数据复制到temp... 阅读全文
摘要:
--use用来设置当前使用哪个数据库use StudentDb--go批处理go--T-SQL中不区分大小写,数据库表中的数据是区分大小写的--例如:insert与INSERT不区分大小写,数据库表中的数据lisi与LiSi是区分大小写的---------------------Insert操作--... 阅读全文