{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

SQL Server 2012数据库管理与开发 慕课版

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

SQL Server 2012数据库管理与开发 慕课版

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

30小时慕课教学视频同步讲解,让学习更高效快捷
80个精彩课堂案例,12个课堂实验,1个综合案例,Java学习从入门到精通
66道习题,300道自测题,5套自测试卷,巩固所学知识
提供免费教学资源,包括精品教学PPT、案例源代码、自测题库、拓展综合案例
Content Description

本书共分13章,系统地介绍了数据库基础,SQL Server 2012安装与配置,创建和管理数据库,表与表数据操作,视图操作,Transact-SQL语法,数据查询,索引与数据完整性,流程控制、存储过程与触发器,SQL Server 2012高级开发,SQL Server 2012安全管理,以及SQL Server 2012维护管理等内容。全书后一章是综合案例。书后附有上机实验,供读者综合实践使用。 本书为慕课版教材,各章节主要内容配备了以二维码为载体的微课,并在人邮学院 平台上提供了慕课。此外,本书还提供了课程资源包,资源包中提供有本书所有实例、上机指导、综合案例和课程设计的源代码,制作精良的电子课件PPT,自测试卷等内容。资源包也可在人邮学院上下载。其中,源代码全部经过精心测试,能够在Windows7、Windows8、Windows10系统下编译和运行。
Author Description

明日科技,程序设计类畅销书作者,其主要作品“视频大讲堂”系列,每个品种都在其同品种的图书中销售名列前茅。累计销售数十万册。其中《SQL Server从入门到精通》长期占据SQL Server零售图书排行榜首位,年销量数万册。
Catalogue

第1章数据库基础1
1.1数据库系统简介2
1.1.1数据库技术的发展2
1.1.2数据库系统的组成2
1.2数 据 模 型2
1.2.1数据模型的概念2
1.2.2常见的数据模型3
1.2.3关系数据库的规范化4
1.2.4关系数据库的设计原则6
1.2.5实体与关系6
1.3数据库的体系结构7
1.3.1数据库三级模式结构7
1.3.2三级模式之间的映射8
1.4常见关系数据库8
1.4.1Access数据库8
1.4.2SQL Server数据库8
1.4.3Oracle数据库9
1.5Transact-SQL简介9
小结10
习题10
第2章SQL Server 2012安装与配置11
2.1SQL Server 2012简介12
2.1.1SQL Server 2012概述12
2.1.2SQL Server 2012的
数据库特性12
2.2SQL Server 2012的安装12
2.2.1安装SQL Server2012
的必备条件13
2.2.2了解用户账户和身份
验证模式13
2.2.3SQL Server 2012的安装13
2.2.4SQL Server 2012的卸载25
2.3SQL Server 2012的服务26
2.3.1后台启动SQL Server 201226
2.3.2通过SQL Server配置管理器
启动SQL Server 201227
2.4SQL Server 2012服务器的注册27
2.4.1服务器组的创建与删除28
2.4.2服务器的注册与删除30
2.5SQL Server 2012帮助的使用33
小结34
第3章创建和管理数据库35
3.1认识数据库36
3.1.1数据库的基本概念36
3.1.2数据库常用对象36
3.1.3数据库的组成37
3.1.4系统数据库38
3.2SQL Server的命名规范38
3.2.1标识符38
3.2.2对象命名规则39
3.2.3实例命名规则40
3.3数据库操作40
3.3.1创建数据库 40 实例:使用命令创建超市管理系统数据库db_supermarket
3.3.2修改数据库 43 实例:将一个数据文件添加到MingRi数据库中
3.3.3删除数据库 46 实例:删除数据库“MingRi”
小结48
习题49
第4章表与表数据操作50
4.1数据表操作51
4.1.1数据表设计原则51
4.1.2数据表基础51
4.1.3以界面方式创建、修改
和删除数据表54
4.1.4使用CREATE TABLE
语句创建表56
实例:创建员工基本信息表
4.1.5使用ALTER TABLE
语句修改表59
实例:向db_2012数据库中的tb_Student表
中添加Sex字段
4.1.6使用DROP TABLE
语句删除表60
实例:删除db _2012数据库中的数据表tb_
Student
4.2分区表61
4.2.1分区表概述61
4.2.2使用界面创建分区表61
4.2.3使用命令创建分区表64
实例:在数据库“db_2012”中创建分
区表
4.3更新66
4.3.1使用SQL Server Management Studio
添加记录66
4.3.2使用INSERT 语句添加记录67
实例:向员工基本信息表中插入记录
4.3.3使用SQL Server Management
studio修改记录67
4.3.4使用UPDATE 语句修改记录68
实例:更新所有员工记录
实例:更新符合条件的记录
4.3.5使用SQL Server Management Studio
删除记录68
4.3.6使用DELETE 语句删除记录69
实例:删除员工信息
4.4表与表之间的关联69
4.4.1一对一关系70
4.4.2一对多关系71
4.4.3多对多关系71
小结72
习题72
第5章 视图操作73
5.1视图概述74
5.1.1使用界面方式操作视图74
5.1.2使用CREATE VIEW
语句创建视图76
实例:创建仓库入库表视图
5.1.3使用ALTER VIEW
语句修改视图76
实例:修改仓库入库表视图
5.1.4使用DROP VIEW
语句删除视图77
5.2视图中的数据操作78
5.2.1从视图中浏览数据78
5.2.2向视图中添加数据79
5.2.3修改视图中的数据79
5.2.4删除视图中的数据80
小结80
习题80
第6章 Transact-SQL 语法基础81
6.1T-SQL 概述82
6.1.1T-SQL 语言的组成82
6.1.2T-SQL 语句结构82
实例:在Student数据库中查询“course”
表的信息
6.2常量83
6.3变量83
6.3.1局部变量83
实例:在course表中,把“课程内容”是
“艺术类”信息赋
值给局部变量@songname,并显示出来
6.3.2全局变量85
实例:修改authors表时,用@@ERROR
检测限制查询冲突
6.4注释符、运算符与通配符87
6.4.1注释符(Annotation)87
6.4.2运算符(Operator)88
实例:用“+”连接两个字符串
6.4.3通配符(Wildcard)91
小结91
习题91
第7章 数据的查询92
7.1创建查询和测试查询93
7.2选择查询93
7.2.1简单的SELECT 查询93
7.2.2重新对列排序95
实例:按照年龄对员工进行排序
7.2.3使用运算符或函数
进行列计算96
实例:使用运算符进行列计算
7.2.4利用WHERE 参数过滤数据96
实例:根据姓名和密码查询用户
7.2.5消除重复记录102
7.3数据汇总103
7.3.1使用聚合函数103
7.3.2使用GROUP BY 子句104
7.3.3使用HAVING 子句105
7.4基于多表的连接查询105
7.4.1连接谓词105
7.4.2以JOIN 关键字指定的连接105
7.5子 查 询108
7.5.1使用IN 或NOT IN
的子查询108
实例:使用IN查询员工信息
7.5.2使用比较运算符的子查询109
7.5.3使用EXISTS 的子查询110
实例:使用EXISTS进行员工信息查询
7.5.4使用UNION 运算符组合
多个结果111
实例:使用Transact-SQL删除视图
小结111
习题111
第8章 索引与数据完整性113
8.1索 引114
8.1.1索引的概念114
8.1.2索引的建立114
实例:创建非聚集索引
实例:创建唯一聚集索引
实例:创建组合索引
8.1.3索引的删除117
实例:删除员工表索引
8.1.4索引的分析与维护118
实例:查询学生信息
实例:查询学生信息并显示查询处理过后
在磁盘移动的统计信息
8.2数据完整性120
8.2.1数据完整性概述120
8.2.2实现数据完整性122
8.2.3使用约束123
实例:创建数据表Employee,并将字段ID
设置主键约束
小结135
习题135
第9章 流程控制、存储过程
与触发器136
9.1流程控制137
9.1.1BEGIN…END137
9.1.2IF138
9.1.3IF…ELSE139
9.1.4CASE140
9.1.5WHILE143
9.1.6WHILE…CONTINUE
…BREAK143
9.1.7RETURN144
9.1.8GOTO145
9.1.9WAITFOR146
9.2存储过程简介146
9.2.1存储过程的优点147
9.2.2存储过程的类别147
9.3创建存储过程147
9.3.1使用SQL Server Management
Studio 创建存储过程148
9.3.2使用Transact-SQL 语言
创建存储过程149
实例:为User表创建存储过程
9.4执行存储过程150
实例:执行user表的存储过程
9.5查看和修改存储过程151
9.5.1使用SQL Server Management
Studio查看和修改存储过程
151
9.5.2使用Transact-SQL 语言
查看和修改存储过程152
实例:查看user表的存储过程
9.6删除存储过程154
9.6.1使用SQL Server Mangement
Studio 删除存储过程154
9.6.2使用Transact-SQL 语言
删除存储过程155
9.7触发器简介155
9.7.1触发器的概念155
9.7.2触发器的功能155
9.7.3触发器的类型和触发操作156
9.8创建触发器156
9.8.1使用SQL Server Management
Studio 创建触发器156
9.8.2使用Transact-SQL 语言
创建触发器157
实例:为员工表创建触发器
9.9修改触发器160
9.9.1使用SQL Server Management
Studio 修改触发器160
9.9.2使用Transact-SQL
语言管理触发器161
9.10删除触发器162
9.10.1使用SQL Server Management
Studio 删除触发器162
9.10.2使用Transact-SQL 语
言删除触发器162
小结163
习题163
第10章 SQL Server 2012 高级开发164
10.1用户自定义数据类型165
10.1.1使用界面方式创建用户
定义数据类型165
10.1.2使用SQL 语句创建用
户自定义数据类型165
10.2用户自定义函数166
10.2.1创建用户自定义函数167
10.2.2使用Transact-SQL 语言
创建用户自定义函数167
实例:创建user表的自定义函数
10.2.3修改、删除用户自定
义函数168
实例:删除user表的自定义函数
10.3使用SQL Server 2012 实现
交叉表查询169
10.3.1使用PIVOT 和UNPIVOT
实现交叉表查询169
实例:使用PIVOT运算符实现交叉表查询
10.3.2使用CASE 实现交叉
表查询173
10.4事务处理174
10.4.1事务简介174
10.4.2事务处理175
10.5锁178
10.5.1锁简介178
10.5.2死锁的产生机制180
小结181
习题181
第11章 SQL Server 2012 安全管理182
11.1SQL Server 身份验证183
11.1.1验证模式183
11.1.2配置SQL Server 的身份
验证模式183
11.1.3管理登录账号184
11.2数据库用户192
11.2.1创建数据库用户192
11.2.2删除数据库用户193
11.3SQL Server 角色193
11.3.1固定服务器角色194
11.3.2固定数据库角色194
11.3.3管理SQL Server 角色194
11.4管理SQL Server 权限195
小结198
习题198
第12章 SQL Server 2012 维护管理199
12.1脱机与联机数据库200
12.1.1脱机数据库200
12.1.2联机数据库201
12.2分离和附加数据库201
12.2.1分离数据库202
12.2.2附加数据库202
12.3导入和导出数据表203
12.3.1导入SQL Server 数据表203
12.3.2导出SQL Server 数据表209
12.4备份和恢复数据库213
12.4.1备 份 类 型213
12.4.2恢复类型214
12.4.3备份数据库214
12.4.4恢复数据库216
12.5脚本219
12.5.1将数据库生成脚本219
12.5.2将数据表生成脚本220
12.5.3执行脚本221
12.6数据库维护计划221
小结226
习题226
第13章 综合案例——腾龙进销
存管理系统227
13.1需求分析228
13.2总体设计228
13.2.1系统目标228
13.2.2构建开发环境228
13.2.3系统功能结构228
13.2.4业务流程图229
13.3数据库设计230
13.3.1数据库概要说明230
13.3.2数据库E-R 图231
13.3.3数据表结构232
13.4公共类设计234
13.4.1DataBase 公共类234
13.4.2BaseInfo 公共类237
13.5系统主要模块开发242
13.5.1系统主窗体设计242
13.5.2库存商品管理模块设计244
13.5.3进货管理模块概述249
13.5.4商品销售排行模块概述257
13.6运行项目259
小结260
附录上机实验261
实验1安装SQL Server 2012 数据库262
实验2创建数据库和修改数据库263
实验3创建数据表和修改数据表265
实验4使用语句更新记录266
实验5创 建 视 图266
实验6在查询中使用Transact-SQL
函数267
实验7查询和汇总数据库的数据268
实验8创建和使用索引271
实验9创建并使用约束及实现数据
完整性272
实验10创建和使用存储过程272
实验11创建触发器273
实验12用户自定义函数与事务274
实验13SQL Server 身份验证275
实验14备份和恢复数据库276

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book