摘要: 单行函数 1、字符函数 函 数 功 能 示 例 结 果 INITCAP (char) 首字母大写 initcap ('hello') Hello LOWER (char) 转换为小写 lower ('FUN') fun UPPER (char) 转换为大写 upper ('sun') SUN LTR 阅读全文
posted @ 2019-08-30 17:12 eadela 阅读(2571) 评论(1) 推荐(2) 编辑
摘要: 单表的查询学习 --查询表的所有数据 select * from 表名;*代表所有 select * from emp; --查询表中指定字段的值 select 字段名1,字段名2,...from表名 select empno from emp; select empno,ename from em 阅读全文
posted @ 2019-08-30 15:53 eadela 阅读(322) 评论(0) 推荐(0) 编辑