1,连接数据库字符串 Data Source=192.168.1.249;Initial Catalog=bbx_uf_jiekou;User ID=sa;Password=123 Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI; 2.读取库中所有表名 select name from sysobjects where xtype='u' 3,查询指定表的所有列名 select…
--删除表 use [20130823_Recource] go drop table my_table1,my_table2,My_table3 --创建表 use [20130823_Recource] go if(exists(select * from sys.objects where name='Student1')) drop table Student1 go create table Student1 ( Id int primary key identity(1,2) not…
用于记录SQL SERVER常用语法,以及内置函数. 以下语句包含: WITH 临时表语法 ROW_NUMBER()内置函数,我一般主要是用来分页.针对于查出来的所有数据做一个数字排序 分页的BETWEEN AND 我也主要是用于分页使用. WITH tab AS ( SELECT ROW_NUMBER() OVER ( ORDER BY CreateDate DESC ) AS RowNumber , DeptCode , DeptName , IsEnabled , IsType ,…
use (数据库名) //切换到目标数据库 if exists (select * from sysdatabases where name='数据库名') //如果括号里面是查看有没有这个数据库 drop database testDB //exist只能返回true或者false 如果存在,就删掉这个数据库 //在创建数据库之前建议先检查一下,以防出错 if object_id('表名') is not null drop table 表名 //建表也建议先这样检查一下,建表的时候把上面的…