{{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

网络数据库应用与开发教程

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

网络数据库应用与开发教程

{{__(":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
Content Description

全书分为三大部分。第1章为第一部分,介绍数据库理论基础,这部分讲述数据库最基本的概念,是学习数据库的理论基础。第2~8章为第二部分,主要介绍Microsoft SQL Server 2000的使用和管理,主要包括SQL Server 2000的安装,Transact-SQL语言,数据库对象操作和管理,数据的查询和修改,数据库系统的安全性管理,实施数据完整性和常用工具介绍等技术,同时介绍相应的数据库理论知识,使读者将理论和实践结合起来。第三部分为第9章,综合前面各章的内容,结合Visual Studio.NET 2003开发环境,给出一个范例(网上玩具商店),重点介绍怎样用SQL Server 2000和.NET的C#开发一个B/S结构的应用程序。
Catalogue

第1章 数据库理论基础
1.1数据库发展简史
1.1.1数据管理的诞生
1.1.2关系数据库的由来
1.1.3结构化查询语言
1.1.4面向对象数据库
1.2数据库管理系统和数据库系统
1.2.1文件管理系统
1.2.2数据库管理系统
1.2.3数据库系统
1.3数据库系统的结构
1.3.1三级模式结构
1.3.2数据库的二级模式映像功能
1.4数据模型
1.4.1数据和数据模型
1.4.2概念层数据模型
1.4.3组织层数据模型
1.5关系数据库设计的规范化和非规范化一
1.5.1规范化设计
1.5.2非规范化设计
1.6数据库应用结构
1.6.1客户机,服务器结构
1.6.2互联网应用结构
1.7数据库应用系统设计
1.7.1数据库应用系统设计的基本过程
1.7.2系统需求分析
1.7.3概念结构设计
1.7.4.逻辑结构设计
1.7.5物理结构设计
1.7.6数据库的实施与维护
1.8本章 小结
1.9思考题

第2章 SQLServer2000的安装和常用工具
2.1软、硬件要求
2.1.1SQLServer2000的版本
2.1.2各个版本性能说明
2.1.3操作系统要求
2.1.4硬件要求
2.2安装SQLServer2000
2.3SQLServer2000常用工具简介
2.3.1服务管理器
2.3.2企业管理器
2.3.3查询分析器
2.3.4客户端和服务器网络实用工具
2.3.5联机丛书
2.4本章 小结
2.5思考题

第3章 Transact-SQL语言基础
3.1SQL概述
3.1.1SQL语言的特点
3.1.2SQL语言的组成
3.1.3SQL语句的结构
3.1.4常用的SQL语句
3.2Transact—SQL数据类型
3.2.1整数数据类型
3.2.2浮点数据类型
3.2.3二进制数据类型
3.2.4逻辑数据类型
3.2.5字符数据类型
3.2.6文本和图形数据类型
3.2.7日期和时间数据类型
3.2.8货币数据类型
3.2.9特定数据类型
3.2.10用户自定义数据类型
3.2.11新数据类型
3.3Transact-SQL变量
3.3.1局部变量
3.3.2全局变量
3.4Transact-SQL编程基础
3.4.1注释符(Annotation)
3.4.2运算符(Operator)
3.4.3通配符(Wildcard)
3.5Transact-SQL流程控制语句
3.5.1IFELSE语句
3.5.2BEGINEND语句
3.5.3CASE语句
3.5.4WHILECONTINUEBREAK语句
3.5.5WAITFOR语句
3.5.6GOTO语句
3.5.7RETURN语句
3.6本章 小结
3.7思考题

第4章 数据库基本对象的操作和管理
4.1数据库的创建和管理
4.1.1SQLServer数据库特点
4.1.2创建数据库
4.1.3管理数据库
4.2表的创建和管理
4.2.1列的属性
4.2.2创建表
4.2.3用户自定义类型
4.2.4管理表
4.3索引的创建和管理
4.3.1索引的相关概念
4.3.2管理索引
4.4关系图的创建和管理
4.5本章 小结
4.6思考题

第5章 数据的查询和修改
5.1数据的查询
5.1.1显示表中的所有数据
5.1.2显示一张表上指定列的所有数据
5.1.3显示指定的带列标题的列
5.1.4用条件筛选表中指定的行
5.1.5按指定顺序显示数据(排序)
5.1.6对查询结果进行分组计算
5.1.7用TOP限制结果集
5.1.8汇总数据
5.1.9字符串函数
5.1.10日期函数
5.1.11数学函数
5.1.12模糊查询
5.1.13内联接
5.1.14外联接
5.1.15合并查询结果集
5.1.16子查询
5.1.17查询语句小结
5.2数据的修改
5.2.1数据的插入
5.2.2数据的更新
5.2.3数据的删除
5.2.4数据修改时的完整性检查
5.3本章 小结
5.4思考题

第6章 实施数据完整性
6.1数据完整性的概念
6.1.1实现数据完整性的方法
6.1.2完整性约束条件的作用对象
6.2约束
6.2.1主关键字约束
6.2.2外关键字约束
6.2.3惟一性约束
6.2.4检查约束
6.2.5缺省约束
6.2.6在企业管理器中创建约束
6.2.7系统对约束的检查
6.3规则
6.3.1创建规则
6.3.2查看规则
6.3.3规则的绑定与松绑
6.3.4删除规则
6.4默认值
6.4.1创建默认值
6.4.2查看默认值
6.4.3默认值的绑定与松绑
6.4.4删除默认值
6.5本章 小结
6.6思考题

第7章 数据库高级对象的操作和管理
7.1视图
7.1.1视图的概念
7.1.2创建视图
7.1.3管理视图
7.1.4通过视图管理数据
7.1.5索引视图
7.2存储过程
7.2.1存储过程的概念
7.2.2创建存储过程
7.2.3管理存储过程
7.2.4系统存储过程
7.3用户自定义函数
7.3.1创建用户自定义函数
7.3.2管理用户自定义函数
7.4事务和锁
7.4.1事务的概念
7.4.2事务的回滚
7.4.3锁的概念
7.4.4查看锁
7.4.5死锁及其防止
7.5触发器
7.5.1触发器的概念
7.5.2创建触发器
7.5.3INSTEADOF触发器
7.5.4管理触发器
7.6游标
7.6.1游标的概念
7.6.2游标的使用
7.6.3管理游标
7.7本章 小结
7.8思考题

第8章 数据库系统的安全性管理
8.1SQLServer安全控制机制
8.1.1数据库系统的安全控制模型
8.1.2数据库权限和用户分类
8.1.3SQLServer的安全机制
8.1.4设置SQLServer的认证模式
8.2管理SQLServer登录账户
8.2.1系统的登录账户
8.2.2管理登录账户
8.3管理数据库用户
8.3.1数据库用户简介
8.3.2管理数据库用户
8.4管理权限
8.4.1权限管理简介
8.4.2权限的管理
8.5管理角色
8.5.1固定的服务器角色
8.5.2固定的数据库角色
8.5.3用户自定义角色
8,6SQLServer安全性管理的途径
8.6.1使用视图作为安全机制
8.6.2使用存储过程作为安全机制
8.7本章 小结
8.8思考题

第9章 ASP.NET+SQLServer2000开发网上玩具商店范例
9.1网上玩具商店解决方案
9.2.NET与SQLServer2000开发环境集成
9.3网上玩具商店部分关键源代码分析
9.3.1创建应用程序首页default.aspx
9.3.2.NET应用的数据访问程序块
9.3.3ASP.NET配置文件Web.config
9.4范例程序的安装调试
9.4.1数据库的安装
9.4.2应用程序调试环境
9.5其他部分文件
9.5.1项目各文件夹里面的内容
9.5.2项目各文件之间的导航关系

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