摘要:
单行函数 字符函数:lower() 转为小写 select lower('HIBV') from dual; upper() 转为大写 select upper('sfa') from dual; initcap()首字母大写select initcap('sfa') from dual; conc 阅读全文
摘要:
关系数据库基本概念 关系:整个二维表 关系名:表格名称 元祖:行数据(记录) 属性:列数据(字段) 属性名:列名称(字段名) 主键:唯一确定元素的属性组(关键字) 域:属性的取值范围 as:起别名(as可以省略) 例: select name [as] 姓名 from student; 查看并输出s 阅读全文