if exists (
select
*
from
sys.databases
where
name
=
'databaseName'
)
drop
database
databaseName
go
Create
DATABASE
databasename
drop
database
databasename
USE master
EXEC
sp_addumpdevice
'disk'
,
'testBack'
,
'c:\mssql7backup\MyNwind_1.dat'
BACKUP
DATABASE
pubs
TO
testBack
create
table
tabname(col1 type1 [
not
null
] [
primary
key
],col2 type2 [
not
null
],..)
Alter
table
tabname
add
colname coltype
Alter
table
tabname
drop
column
colname
alter
table
Tblscore
alter
column
tsid nvarchar(50)
EXEC
sp_rename
'Tblscore.[tSid]'
,
'FNumber'
,
'COLUMN'
;
sql=
"select * from 数据表 where 字段名=字段值 order by 字段名 [desc]"
sql=
"select * from 数据表 where 字段名 like '%字段值%' order by 字段名 [desc]"
sql=
"select top 10 * from 数据表 where 字段名=字段值 order by 字段名 [desc]"
sql=
"select top 10 * from 数据表 order by 字段名 [desc]"
sql=
"select * from 数据表 where 字段名 in ('值1','值2','值3')"
sql=
"select * from 数据表 where 字段名 between 值1 and 值2"
sql=
"update 数据表 set 字段名=字段值 where 条件表达式"
sql=
"update 数据表 set 字段1=值1,字段2=值2 …… 字段n=值n where 条件表达式"
sql=
"delete from 数据表 where 条件表达式"
sql=
"delete from 数据表"
(将数据表所有记录删除)
sql=
"insert into 数据表 (字段1,字段2,字段3 …) values (值1,值2,值3 …)"
sql=
"insert into 目标数据表 select * from 源数据表"
(把源数据表的记录添加到目标数据表)
AVG
(字段名) 得出一个表格栏平均值
COUNT
(*;字段名) 对数据行数的统计或对某一栏有值的数据行数统计
MAX
(字段名) 取得一个表格栏最大的值
MIN
(字段名) 取得一个表格栏最小的值
SUM
(字段名) 把数据栏的值相加
sql=
"select sum(字段名) as 别名 from 数据表 where 条件表达式"
set
rs=conn.excute(sql)
CREATE
TABLE
数据表名称(字段1 类型1(长度),字段2 类型2(长度) .... )