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

Oracle数据库应用从入门到精通(附光盘)

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

Oracle数据库应用从入门到精通(附光盘)

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

秉承理论学习与实际开发相结合的原则,力求实现所有技术点和经典案例的完美搭配,旨在帮助Oracle数据库初学者轻松入门,并迅速达到熟练程度。
Content Description

在计算机技术高速发展的今天,任何大型信息系统,都需要有数据库管理系统(DBMS)作为支撑。其中,Oracle以其卓越的性能获得了广泛的应用,已经成为当今世界上流行的关系型数据库管理系统。
本书共分为3篇。其中第1篇为Oracle数据库基础篇,内容包括数据库概述、Oracle的管理工具、Oracle数据库基本操作、Oracle数据表基本操作及约束。第2篇为Oracle数据库对象篇,内容包括简单查询、高级查询、常用函数、索引、视图、Oracle编程基础、游标、存储过程、函数、触发器、序列和事务与锁。第3篇为Oracle数据库管理篇,内容包括表空间的管理、用户与权限、备份与恢复。在本书的附赠光盘中,我们特意放置了一套包括PPT文档和视频的学习教程,与图书内容紧密配合,帮助读者更轻松地掌握图书内容。
秉承注重理论与实际开发相结合的原则,本书中的每个技术点都配备了与此相对应的案例,旨在帮助Oracle数据库初学者快速入门,同时也适合Oracle数据库管理员和想全面学习Oracle数据库技术以提升应用水平的人员使用。
Catalogue

第1篇 Oracle数据库基础篇
第1章 数据库概述
1.1 数据库简介 1
1.1.1 数据库的常见术语 1
1.1.2 主流数据库对比 2
1.1.3 Oracle数据库的优势 3
1.2 第一次安装Oracle数据库 3
1.2.1 Oracle数据库的版本变迁 3
1.2.2 下载Oracle安装文件 4
1.2.3 安装Oracle 5
1.2.4 安装中需要注意的问题 10
1.3 小结 10
第2章 Oracle的管理工具
2.1 Oracle企业管理器 11
2.2 Oracle网络配置助手 13
2.2.1 监听程序配置 13
2.2.2 本地网络服务名配置 15
2.3 Oracle网络管理器 17
2.3.1 监听器配置(LISTENER) 18
2.3.2 本地服务名配置 19
2.4 使用SQL Plus工具 21
2.4.1 登录SQL Plus 21
2.4.2 利用SQL Plus执行数据库操作 22
2.4.3 利用SQL Plus解决数据库管理员密码丢失问题 22
2.5 使用SQL Developer集成开发环境 23
2.5.1 登录SQL Developer 23
2.5.2 SQL Developer操作 23
2.6 小结 24

第3章 Oracle数据库基本操作
3.1 数据库的创建 25
3.2 数据库的删除 30
3.2.1 删除数据库 30
3.2.2 修改注册表 32
3.3 安装示例数据库 33
3.4 小结 34
第4章 Oracle数据表基本操作
4.1 Oracle中的数据类型 35
4.2 创建数据表 36
4.2.1 设计数据表 36
4.2.2 利用OEM创建数据表 37
4.2.3 利用工具创建数据表 42
4.2.4 利用命令创建数据表 43
4.3 修改表结构 43
4.3.1 利用OEM修改数据表结构 43
4.3.2 利用工具修改数据表结构 45
4.3.3 利用命令查看、修改数据表结构 46
4.4 删除数据表 47
4.4.1 利用OEM删除数据表 47
4.4.2 利用工具删除数据表 49
4.4.3 利用drop命令删除数据表 49
4.5 操作数据表中的数据 49
4.5.1 添加数据 49
4.5.2 查看数据 51
4.5.3 修改数据 52
4.5.4 删除数据 53
4.6 特殊的数据表dual 53
4.7 小结 54
第5章 约束
5.1 什么是约束 55
5.2 主键约束 56
5.2.1 什么是主键 56
5.2.2 利用命令添加主键约束 56
5.2.3 主键使用场景 57
5.2.4 修改主键约束 59
5.2.5 删除主键约束 61
5.2.6 主键与索引 62
5.3 外键约束 64
5.3.1 什么是外键 64
5.3.2 添加外键约束 64
5.3.3 验证外键约束 67
5.3.4 修改外键约束 69
5.3.5 使用SQL Developer添加、删除外键约束 71
5.3.6 外键使用场景 71
5.4 唯一性约束(UNIQUE约束) 72
5.4.1 什么是唯一性约束 72
5.4.2 添加唯一性约束 73
5.4.3 验证唯一性约束 74
5.4.4 修改唯一性约束 74
5.4.5 使用SQL Developer添加、删除唯一性约束 76
5.4.6 唯一性约束使用场景 77
5.5 检查约束 77
5.5.1 什么是检查约束 77
5.5.2 添加检查约束 77
5.5.3 验证检查约束 78
5.5.4 修改检查约束 80
5.5.5 使用SQL Developer添加、删除检查约束 81
5.5.6 检查约束使用场景 82
5.6 非空约束(not null约束) 82
5.6.1 为列添加非空约束 82
5.6.2 撤销非空约束 84
5.7 默认约束 84
5.7.1 为列添加默认(default)约束 84
5.7.2 删除默认(default)约束 85
5.8 小结 86
第2篇 Oracle数据库对象篇
第6章 简单查询
6.1 基本查询 87
6.1.1 select查询语句 87
6.1.2 选取指定字段 87
6.1.3 选取全部字段(*) 88
6.1.4 为列设置别名 88
6.1.5 利用distinct获得唯一性记录 89
6.1.6 返回查询的部分结果 90
6.2 简单条件查询 90
6.2.1 使用where子句判断条件 90
6.2.2 在查询中使用比较表达式 91
6.2.3 使用简单逻辑表达式查询 92
6.2.4 指定数据范围的查询 94
6.2.5 有关null值的判断 96
6.2.6 使用like进行模糊查询 97
6.2.7 使用order by子句先排序再查询 99
6.2.8 使用group by子句进行分组统计 100
6.2.9 使用having子句限制搜索条件 101
6.3 小结 102
第7章 高级查询
7.1 多个表的连接 103
7.1.1 什么是连接 103
7.1.2 连接的类型 103
7.1.3 如何实现多表查询 104
7.1.4 指定多表连接的条件 105
7.1.5 使用别名作为表名的简写 106
7.1.6 自连接 106
7.2 表的连接查询 106
7.2.1 自然连接 107
7.2.2 内连接 109
7.2.3 外连接 110
7.3 单表中的联合语句 113
7.3.1 使用union取得并集 113
7.3.2 使用union all查询 115
7.3.3 使用intersect查询获取交集 116
7.3.4 使用minus查询 116
7.4 子查询 117
7.4.1 什么是子查询 117
7.4.2 使用子查询 117
7.4.3 子查询的使用方式 119
7.4.4 比较运算符引入子查询 119
7.4.5 子查询中的聚合函数 120
7.4.6 在子查询中使用in、all关键字 122
7.4.7 在子查询中使用exists关键字 124
7.5 查询语句优化 124
7.5.1 在查询中尽量不使用“*” 125
7.5.2 多表查询中尽量使用表别名 125
7.5.3 条件查询多使用where 125
7.5.4 指定查询范围多使用in 125
7.5.5 子查询中多使用exists语句判断条件 125
7.6 小结 126


第19章 用户与权限
19.1 Oracle数据库安全性概述 368
19.2 用户 369
19.2.1 Oracle下的用户简介 369
19.2.2 创建用户 369
19.2.3 修改用户 374
19.2.4 删除用户 375
19.3 权限 376
19.3.1 Oracle下的权限简介 376
19.3.2 授予系统权限 377
19.3.3 授予对象权限 381
19.3.4 权限的传递 384
19.3.5 收回对象的权限 385
19.3.6 用户和权限 387
19.4 角色 388
19.4.1 Oracle下的角色简介 388
19.4.2 创建角色 389
19.4.3 为角色授权 390
19.4.4 将一个角色授予另一个角色 392
19.4.5 为用户授予角色 393
19.4.6 禁用和启用角色 394
19.4.7 撤销角色权限 396
19.4.8 删除角色 396
19.5 小结 397
第20章 备份与恢复
20.1 了解数据库的备份与恢复 398
20.2 逻辑备份与恢复 398
20.2.1 使用expdp和impdp工具进行逻辑备份恢复 398
20.2.2 使用OEM进行逻辑备份恢复 401
20.3 脱机备份 410
20.3.1 Oracle下的脱机备份 410
20.3.2 Oracle下的脱机恢复 411
20.4 小结 411
附录篇
注:以下内容读者可在本书附赠光盘中学习使用。
附录A 序列属性
附录A.1 创建序列的注意事项 412
附录A.2 指定序列初始值 413
附录A.3 序列的最大值和最小值 413
附录A.4 序列的增长步长 415
附录A.5 序列循环取值 416
附录A.6 序列缓存大小 418
附录B 概要文件
附录B.1 创建概要文件 420
附录B.2 修改概要文件 423
附录B.3 删除概要文件 423
附录C 联机备份与数据恢复
附录C.1 使用RAMN实现联机备份与恢复 425
附录C.2 恢复之前的备份 427
附录D 控制文件和日志文件
附录D.1 控制文件 430
附录D.1.1 查询控制文件 430
附录D.1.2 创建控制文件 432
附录D.2 日志文件 433
附录D.2.1 使用企业管理器创建日志文件组 433
附录D.2.2 使用语句的方法添加日志文件 435
附录D.2.3 查询日志文件组 436
附录D.2.4 查询日志文件 436
附录D.3 小结 437
Introduction

历史上,Oracle数据库超越IBM,是第一个完整的关系型数据库管理系统。发展到今天,也可以说是最专业的、全球领先的数据库系统,并且Oracle数据库可以运行在几乎所有的计算机系统上,也是最流行的数据库管理系统。任何数据库专业人士都不能忽视,应该学习和掌握Oracle数据库。本书给读者提供了一个入门并完全掌握Oracle数据库的方法,在本书的基础上,读者也可以掌握云技术的发展方向。
Oracle的优势
Oracle在数据安全性与数据完整性方面的优越性能以及跨越操作系统、多硬件平台的数据互操作等特点,越来越多的用户使用Oracle作为其信息系统管理、企业数据处理、Internet、电子商务网站等领域应用数据的后台处理系统。
与同类书相比本书有何特色
本书以“Oracle安装配置→利用SQL语句操作数据库对象→Oracle数据库高级管理”为主线,辅以开发项目时遇到的常用SQL语句操作,让读者在学习关于Oracle数据库和SQL语句基础知识的同时,能更快速地适应数据库的工作。
在学习Oracle数据库软件的同时,希望读者能牢记:动手才是硬道理。切合这一主题,本书每一章均提供了非常实用的案例,供读者学习和研究。
本书从Oracle数据库的环境配置和SQL语句的基本语法出发,详细讲解了Oracle数据库的各种基础操作和如何利用SQL语句来操作数据库对象,同时也给出了极具代表性和实用性的应用示例。
本书的特点主要体现在以下几个方面。
· 以现实职场中经典数据库操作和完整系统的项目为背景,结合当前最主流的版本Oracle软件的基本语法知识,组织和编写全书的内容。
· 采用以实例驱动模式为指引,即不仅每章都是一个完整的实例,而且各章实例所涉及的知识点还涵盖了Oracle软件的各个方面。通过对本书实例的剖析,读者不仅能够深刻体会到数据库和Oracle软件的各种知识点特性,而且在具体开发应用时也能够“游刃有余”。
· 从数据库的基础概念开始讲解,逐步深入Oracle软件的基础操作和软件的高级操作、管理和应用。内容难度从易到难,讲解由浅入深,使学习循序渐进。
· 每段代码都经过详细步骤来演示,并指明了难点和核心要点,使读者能够明确重点。在具体讲解时,还贯穿了大量的使用技巧,以便让读者能够体验实际操作Oracle软件的技巧。
· 随书附赠的光盘里,我们提供了4个附录的PDF文档(控制文件和日志文件、序列属性、联机备份与数据恢复、概要文件)。同时还配套了大量的PPT和视频讲解,对于初学者来说,视频讲解具有非常直观的辅助学习的作用。
本书内容及知识体系
本书共分为3篇,20章,结合目前最主流的软件环境Oracle11g,全方位介绍了关于数据库的基本概念和Oracle软件的各种操作,从数据库的基础知识、Oracle软件的基础操作和标准SQL语句讲起,再进一步详细介绍了关于Oracle软件的高级操作。
第1篇 Oracle数据库基础篇(第1~5章)
本篇主要介绍了Oracle软件涉及的基础概念和该软件的安装过程。首先介绍了Oracle数据库简介,分别为数据库术语、主流数据库简介、Oracle数据库的特点、安装Oracle数据库;然后详细讲解了Oracle的常用工具、数据类型与表的管理、表的约束。
第2篇 Oracle数据库对象篇(第6~17章)
本篇主要介绍了Oracle数据库对各类对象的基本操作和应用,其中前者主要包含数据查询、高级查询、常用函数、索引对象操作、视图对象操作、Oracle编程基础、游标、存储过程、触发器对象操作、序列、事务与锁。
第3篇 Oracle数据库管理篇(第18~20章)
本篇主要介绍了Oracle数据库的高级管理,包含表空间的管理、用户与权限、备份与恢复。
物超所值的附赠光盘
本书由河南城建学院赵笑声编写。在附赠的光盘中,我们精心准备了如下内容:
· 附录A~D的PDF文档。
· 十八个系列的PPT文档,与书中内容紧密配合,精华体现。
· 针对Oracle数据库的技能而做的十八个视频文件,讲解细致到位。
适合阅读本书的读者
· 希望使用Oracle数据库的新手。
· 迫切希望提高Oracle数据库使用技能和水平的程序人员。
· 具备一定编程经验但是数据库操作技能不高的工程师。
阅读本书的建议
· 没有数据库基础的读者,建议从第1章顺次阅读并演练每一个实例。
· 有一定SQL语言基础的读者,可以根据实际情况有重点地选择所需阅读的章节和案例。
· 可以先对书中的每个知识点和案例阅读一遍,然后结合光盘中提供的多媒体教学视频再理解一遍,这样学习起来会更加容易,印象也会更加深刻。
编 者
2015年11月

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