--高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(dis
一、实验目的
本实验的目的是使学生熟练掌握MySQL查询分析器的使用方法,加深SQL语言查询语句的理解。熟练掌握数据查询中的分组、统计、计算和集合的操作方法。
二、实验内容
在数据库world中完成以下操作。
1、 查询所有国家名称及相应的城市、语言。
输入以下代码并运行:
SELECT country.`Name`, city.`Name`, countrylanguage.`Language`
FROM city
INNER JOIN country
ON country.Co