SQL语句
2018-06-17 22:39:29来源:未知 阅读 ()
--创建数据库
create database ShoppingManage
on
(
--数据库文件名称
name = 'ShoppingManage.mdf',
--数据库路径(包含数据库文件名称)
filename = 'E:\资料\Data\ShoppingManage.mdf'
)
--删除数据库
drop database 数据库名称
--例如drop database ShoppingManage
--创建一个用户表
create table [User]
(
UserId int primary key identity(1,1), --用户ID
UserName nvarchar(50) not null, --用户账号
UserPwd nvarchar(30) , --用户密码
UserCreateTime datetime default(getdate()),--用户创建时间
UserLastLoginTime datetime, --最后登录时间
UserLoginCount int default(0) --登录次数
)
--添加数据
insert into [User](UserName,UserPwd) values('王亦欣','123456')
--删除表不会留下痕迹
truncate table 表名 --例如truncate table [User]
--删除表会留下痕迹
drop table 表名 --例如drop table [User]
--创建一个可以实现分页的存储过程
create proc SP_Pager
--从第几条数据开始查询
@startIndex int,
--从第几条数据结束查询
@endIndex int
as
select * from (select *,ROW_NUMBER() over(order by Id) as rid from Products ) temp where rid>=@startIndex and rid<=@endIndex ;
--执行存储过程
exec SP_Pager startIndex ,endIndex 例如exec SP_Pager 1,20是查询Products表中按ID排序之后的第一条数据到第20条的数据
--执行有参有返回值的存储过程
declare @number nvarchar(4000);
exec 存储过程名称 输入参数,输入参数,@number(输出参数);
select @number
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:log4net 最快速体验
- 链接 Mysql 创建 数据库和创表,增加数据 2019-08-13
- Python数据基础类型-列表 2019-08-13
- Python3字典排序 2019-07-24
- django框架使用及创建项目 2019-07-24
- 10道Python常见面试题 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash