
sql
jmxwzy
这个世界太♂乱
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MySQL Chapter 4-Querying Data by Using Joins and Subqueries
use globaltoyz; /*Exercise 1*/ select t.vToyName, b.cBrandName,c.cCategory from toys as t Join toybrand as b on t.cBrandId=b.cBrandId JOIN category as c on t.cCategoryId=c.cCategoryId; /*Exercise 2...原创 2019-12-01 15:58:04 · 222 阅读 · 0 评论 -
MySQL Chapter 3-Querying Data
This is for test on 12.02 and I alse want to review the MySQL.By the way,I want to try to write my first English blog. Retrieving Data 1.Retrieving Specific Attributes select *from cusomer; se...原创 2019-11-30 22:37:43 · 220 阅读 · 0 评论