1.MySQL数据库服务配置好后,系统会有4个默认的数据库. information_schema:虚拟对象,其对象都保存在内存中 performance_schema:服务器性能指标库 mysql:记录用户权限,帮助,日志等信息 test:测试库 查看当前的所有数据库: show databases //只显示当前用户拥有权限访问的所有数据库 删除数据库 drop database if exists db_name 创建数据库 create database if not exist db_…
-- 流程控制函数 -- 1.查询员工部门号,并赋予部门名 select empno,ename,deptno,case deptno then '10部门' then '20部门' else '30部门' end from emp -- 2.判断工资小于1000,小于4000,大于4000 then '大穷鬼' then '中等穷鬼' else '大老板' end from emp -- 3.判断为真 ,'2大','1大') from dual -- 4.判断为假 ,'2大','1大') fr…
1.AVG() 求平均数 select avg(prod_price) as avg_price from products; --返回商品价格的平均值 ; --返回生产商id为1003的商品价格平均值 2.COUNT():确定表中行的数目或者符合特定条件的行的数目 select count(*) as num_cust from customers; --统计customers表中的顾客数 select count(email) as num_cust from customers; --统计…