{{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查询的艺术

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

SQL查询的艺术

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

《SQL查询的艺术》数据库基础和SQL技巧详解,一本书精通SQL查询的艺术,包含287个典型实例,涵盖常见SQL应用。

Content Description

SQL是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统。SQL是数据库领域的一种标准语言。任何需要从事数据库相关工作的程序员,都必须学习和掌握SQL。
《SQL查询的艺术》全面地介绍了数据库的基础知识和SQL查询的技巧,通过丰富的实例,帮助读者掌握常见的SQL应用。全书共分19章,按照数据定义、数据查询、数据操纵、数据控制、事务控制和程序化SQL的顺序,详细地讲解SQL编程的基础知识。全书共包括大小实例300多个,突出了实例教学、学用结合的特点。
《SQL查询的艺术》适用于学习SQL编程的读者阅读,尤其适用于SQL初学者阅读;本书对数据库架构师、数据库管理员也有一定的参考价值。

Author Description

张权,现为天津红翔吉瑞网络科技有限公司CEO,硅谷访问学者,国内顶级数据库专家,主研移动终端与大数据交互。拥有多家上市公司移动终端解决方案实施经验,曾为国内外多家知名互联网企业提供移动终端技术咨询服务。
Catalogue

第1章数据库与SQL基础
1.1数据库的基本概念
1.1.1数据库的由来
1.1.2数据库系统的概念
1.2数据库系统的结构、组成及工作流程
1.2.1数据库的体系结构
1.2.2数据库系统的组成
1.2.3数据库的工作流程
1.3关系数据库
1.3.1关系模型
1.3.2Codd十二法则
1.3.3范式
1.4SQL语言基础
1.4.1SQL的历史
1.4.2SQL语言的组成
1.4.3SQL语句的结构
1.4.4SQL的优点
1.4.5SQL的执行
1.5SQL环境
1.5.1环境
1.5.2SQL的层次结构
1.5.3客户程序和服务程序系统
1.5.4SQL环境中对象的命名规则
第2章主要的关系数据库与SQL
2.1SQL Server
2.1.1SQL Server的结构
2.1.2数据库访问标准化接口--ODBC
2.1.3使用查询分析器执行SQL语句
2.2Transact-SQL
2.2.1Transact-SQL概述
2.2.2Transact-SQL的主要组成
2.2.3Transact-SQL的一些重要命令
第3章创建、修改和删除表
3.1表的基础知识
3.1.1表的基本结构
3.1.2表的种类
3.2SQL数据类型
3.2.1字符型数据
3.2.2数字型数据
3.2.3日期数据类型
3.2.4二进制数据类型
3.2.5文本和图形数据类型
3.2.6自定义数据类型
3.3表的创建(CREATE)
3.3.1创建基本表
3.3.2非空约束
3.3.3DEFAULT指定缺省值
3.4表的修改
3.4.1增加新列
3.4.2删除列
3.4.3修改列
3.5表的删除与重命名
3.5.1重命名表
3.5.2删除表
3.6创建、删除数据库
3.6.1数据库的创建
3.6.2SQL Server中数据库的创建
3.6.3删除数据库
第4章索引与视图的创建
4.1索引的基础知识
4.1.1索引的概念
4.1.2索引的结构
4.2索引的创建与销毁61
4.2.1基本创建语法
4.2.2本章实例用到的实例表
4.2.3创建简单的非簇索引
4.2.4多字段非簇索引的创建
4.2.5使用UNIQUE关键字创建惟一索引
4.2.6使用CLUSTERDE关键字创建簇索引
4.2.7索引的销毁
4.2.8使用索引的几点原则
4.3视图的基础知识
4.3.1视图简介
4.3.2视图的优缺点
4.4视图的创建与销毁
4.4.1基本创建语法
4.4.2创建简单的视图
4.4.3利用视图简化表的复杂连接
4.4.4利用视图简化复杂查询
4.4.5视图的销毁
4.4.6使用视图的几点原则
第5章简单的查询
5.1查询的基本结构
5.1.1SELECT语句的结构
5.1.2SELECT语句的执行步骤
5.2列的查询
5.2.1本章用到的实例表
5.2.2单列查询
5.2.3使用DISTINCT去除重复信息
5.2.4多列查询
5.2.5查询所有的列
5.3排序查询结果
5.3.1单列排序
5.3.2多列排序
5.3.3采用序号进行多列排序
5.3.4反向排序
5.4使用WHERE子句定义搜索条件查询
5.4.1WHERE子句单条件查询
5.4.2单值比较运算符
5.4.3BETWEEN运算符范围筛选
5.4.4NULL值的判断
第6章复杂搜索条件查询
6.1本章用到的实例表
6.2组合查询条件
6.2.1AND运算符
6.2.2OR运算符
6.2.3AND、OR运算符的组合使用
6.3IN运算符
6.3.1IN运算符的使用方法
6.3.2IN运算符与OR运算符
6.4NOT运算符
6.4.1使用NOT运算符
6.4.2NOT运算符与<>运算符
6.5使用LIKE进行模糊查询
6.5.1LIKE运算符
6.5.2 "%"通配符
6.5.3"_"通配符
6.5.4"[]"通配符
6.5.5使用ESCAPE定义转义符
第7章连接符、数值运算与函数
7.1本章实例用到的表
7.2连接符
7.2.1连接符的应用
7.2.2使用别名
7.3数值运算
7.3.1数学运算符的种类
7.3.2数学运算符的运用
7.3.3使用CAST表达式转换数据类型
7.3.4使用CASE表达式
7.4函数
7.4.1有关函数的说明
7.4.2字符处理函数
7.4.3算术运算函数
7.4.4日期时间函数
7.4.5CONVERT()函数转换日期、时间
第8章聚合分析与分组
8.1聚合分析的基本概念
8.1.1聚合分析
8.1.2聚合函数
8.2聚合函数的应用
8.2.1求和函数--SUM()
8.2.2计数函数--COUNT()
8.2.3最大/最小值函数--MAX()/MIN()
8.2.4均值函数--AVG()
8.2.5聚合分析的重值处理
8.2.6聚合函数的组合使用
8.3组合查询
8.3.1GROUP BY子句创建分组
8.3.2GROUP BY子句根据多列组合行
8.3.3ROLLUP运算符和CUBE运算符
8.3.4GROUP BY子句中的NULL值处理
8.3.5HAVING子句
8.3.6HAVING子句与WHERE子句
8.3.7SELECT语句各查询子句总结
第9章多表查询
9.1本章用到的实例表
9.2表的基本连接
9.2.1连接表的目的
9.2.2简单的二表连接
9.2.3多表连接
9.2.4使用表别名
9.2.5采用JOIN关键字建立连接
9.3表的连接类型
9.3.1自连接
9.3.2自然连接(NATURAL JOIN)
9.3.3内连接(INNER JOIN)
9.3.4外连接(OUTER JOIN)
9.3.5交叉连接(CROSS JOIN)
9.4UNION与UNION JOIN
9.4.1关系的集合运算
9.4.2UNION运算符
9.4.3ORDER BY子句排序UNION运算结果
9.4.4对多表进行UNION运算
9.4.5UNION JOIN 连接表
9.5表连接的其他应用及注意问题
9.5.1连接表进行聚合运算
9.5.2多表连接的综合运用
9.5.3多表连接注意事项
第10章子查询
10.1创建和使用返回单值的子查询
10.1.1在多表查询中使用子查询
10.1.2在子查询中使用聚合函数
10.2创建和使用返回多行的子查询
10.2.1IN子查询
10.2.2IN子查询实现集合交和集合差运算
10.2.3EXISTS子查询
10.2.4EXISTS子查询实现两表交集
10.2.5SOME/ALL子查询
10.2.6UNIQUE子查询
10.3相关子查询
10.3.1使用IN引入相关子查询
10.3.2比较运算符引入相关子查询
10.3.3在HAVING子句中使用相关子查询
10.4嵌套子查询
10.5使用子查询创建视图
10.6树查询
第11章数据插入操作
11.1插入单行记录
11.1.1基本语法
11.1.2整行插入
11.1.3NULL值的插入
11.1.4唯一值的插入
11.1.5特定字段数据插入
11.1.6通过视图插入行
11.2插入多行记录
11.2.1由VALUES关键字引入多行数据插入
11.2.2使用SELECT语句插入值
11.3表中数据的复制
11.3.1基本语法
11.3.2应用实例
11.4从外部数据源导入、导出数据
11.4.1Access数据库数据的导出
11.4.2Access数据库数据的导入
11.4.3SQL Server数据库数据导出
11.4.4SQL Server数据库数据导入
第12章数据的更新和删除
12.1更新表中的数据
12.1.1UPDATE语句的基本语法
12.1.2UPDATE语句更新列值
12.1.3利用子查询更新多行的值
12.1.4依据外表值更新数据
12.1.5分步更新表
12.2删除表中的数据
12.2.1DELETE语句基本语法
12.2.2DELETE语句删除单行数据
12.2.3DELETE语句删除多行数据
12.2.4DELETE语句删除所有行
12.2.5TRUNCATE TABLE语句
12.3通过视图更新表
12.3.1可更新视图的约束
12.3.2通过视图更新表数据
12.3.3通过视图删除表数据
第13章安全性控制
13.1SQL安全模式
13.1.1授权ID
13.1.2SQL的安全对象和权限
13.1.3授权图
13.2角色管理
13.2.1CREATE语句创建角色
13.2.2DROP语句删除角色
13.2.3GRANT语句授予角色
13.2.4REVOKE语句取消角色
13.3权限管理
13.3.1GRANT语句授予权限
13.3.2REVOKE语句取消权限
13.3.3SELECT权限控制
13.3.4INSERT权限控制
13.3.5UPDATE权限控制
13.3.6DELETE权限控制
13.4SQL Server安全管理
13.4.1SQL Server登录认证
13.4.2SQL Server用户ID的管理
13.4.3SQL Server权限管理
13.4.4SQL Server角色管理
13.5Oracle安全管理
13.5.1Oracle中用户、资源、概要文件、模式的概念
13.5.2Oracle中的用户管理
13.5.3Oracle中的资源管理
13.5.4Oracle中的权限管理
13.5.5Oracle中的角色管理
第14章完整性控制
14.1完整性约束简介
14.1.1数据的完整性
14.1.2完整性约束的类型
14.2与表有关的约束
14.2.1列约束与表约束的创建
14.2.2NOT NULL(非空)约束
14.2.3UNIQUE(惟一)约束
14.2.4PRIMARY KEY(主键)约束
14.2.5FOREIGN KEY(外键)约束
14.2.6CHECK(校验)约束
14.3深入探讨外键与完整性检查
14.3.1引用完整性检查
14.3.2MATCH子句
14.3.3更新、删除操作规则
14.4域约束与断言
14.4.1域与域约束
14.4.2利用断言创建多表约束
14.5SQL Server中的完整性控制
14.5.1创建规则(Rule)
14.5.2规则的绑定与松绑
14.5.3创建缺省值(Default)
14.5.4缺省值的绑定与松绑
第15章存储过程与函数
15.1SQL中的存储过程与函数
15.2SQL Server 中的流控制语句
15.2.1BEGIN…END语句
15.2.2IF…ELSE语句
15.2.3WHILE、BREAK和CONTINUE语句
15.2.4DECLARE语句
15.2.5GOTO label语句
15.2.6RETURN语句
15.2.7WAITFOR语句
15.2.8PRINT语句
15.2.9注释
15.3SQL Server中的存储过程和函数
15.3.1系统存储过程
15.3.2使用CREATE PROCEDURE创建存储过程
15.3.3使用EXECUTE语句调用存储过程
15.3.4使用CREATE FUNCTION创建函数
15.3.5使用Enterprise Manager(企业管理器)创建存储过程和函数
15.3.6修改和删除存储过程和函数
15.4Oracle中的流控制语句
15.4.1条件语句
15.4.2循环语句
15.4.3标号和GOTO
15.5Oracle数据库中的存储过程
15.5.1存储过程的创建与调用
15.5.2Oracle中存储过程和函数的管理
第16章SQL触发器
16.1触发器的基本概念
16.1.1触发器简介
16.1.2触发器执行环境
16.2SQL Server中的触发器
16.2.1SQL Server触发器的种类
16.2.2使用CREATE TRIGGER命令创建触发器
16.2.3INSERT触发器
16.2.4DELETE触发器
16.2.5UPDATE触发器
16.2.6INSTEAD OF触发器
16.2.7嵌套触发器
16.2.8递归触发器
16.2.9SQL Server中触发器的管理
16.3Oracle数据库中触发器的操作
16.3.1Oracle触发器类型
16.3.2触发器的创建
16.3.3创建系统触发器
16.3.4触发器的触发次序和触发谓词的使用
16.3.5Oracle触发器的管理
第17章SQL中游标的使用
17.1SQL游标的基本概念
17.1.1游标的概念
17.1.2游标的作用及其应用
17.2SQL游标的使用
17.2.1使用DECLARE CURSOR语句创建游标
17.2.2使用OPEN/CLOSE语句打开/关闭游标
17.2.3使用FETCH语句检索数据
17.2.4基于游标的定位DELETE语句
17.2.5基于游标的定位UPDATE语句
17.3SQL Server中游标的扩展
17.3.1Transact_SQL扩展DECLARE CURSOR语法
17.3.2@@CURSOR_ROWS全局变量确定游标的行数
17.3.3@@FETCH_STATUS全局变量检测FETCH操作的状态
17.3.4游标的关闭与释放
17.3.5游标变量
17.3.6使用系统过程管理游标
17.4Oracle中游标的使用
17.4.1显式游标与隐式游标
17.4.2游标的属性
17.4.3%TYPE、%ROWTYPE定义记录变量
17.4.4参数化游标
17.4.5游标中的循环
17.4.6游标变量
17.5小结
第18章事务控制与并发处理
18.1SQL事务控制
18.1.1事务控制的引入
18.1.2事务的特性
18.1.3SQL中与事务有关的语句
18.2事务控制的具体实现
18.2.1开始事务
18.2.2SET CONSTRAINTS语句设置约束的延期执行
18.2.3终止事务
18.3并发控制
18.3.1并发操作的问题
18.3.2事务隔离级别
18.3.3SET TRANSACTION设置事务属性
18.4SQL Server中的并发事务控制
18.4.1锁的分类
18.4.2SQL Server中表级锁的使用
18.4.3设置隔离级别实现并发控制
18.4.4死锁及其预防
18.5Oracle中的并发事务控制
18.5.1通过加锁避免写数据丢失
18.5.2设置只读事务(READ ONLY)
18.5.3Oracle中的隔离级别
第19章嵌入式SQL
19.1SQL的调用
19.1.1直接调用SQL
19.1.2嵌入式SQL
19.1.3SQL调用层接口(CLI)
19.2嵌入式SQL的使用
19.2.1创建嵌入式SQL语句
19.2.2SQL通信区
19.2.3主变量
19.2.4嵌入式SQL中使用游标
19.3检索、操作SQL数据
19.3.1不需要游标的SQL DML操作
19.3.2使用游标的SQL DML操作
19.3.3动态SQL技术
19.4SQL Server中嵌入式SQL的编译运行
19.4.1嵌入式SQL代码
19.4.2预编译文件
19.4.3设置Visual C++ 6.0连接
19.4.4编译运行程序
19.5Oracle中嵌入式SQL的编译运行
19.5.1嵌入式SQL代码
19.5.2预编译文件
19.5.3设置Visual C++ 6.0编译环境
19.5.4编译运行程序
附录ASQL保留字
附录B常用的SQL命令

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