随笔分类 -  SQL Fundamentals

摘要:Description The Oracle/PLSQL COUNT function returns the count of an expression. The COUNT(*) function returns the number of rows in a table that satis 阅读全文
posted @ 2017-07-04 09:37 寻香径 阅读(354) 评论(0) 推荐(0)
摘要:SQL Fundamentals || Oracle SQL语言 DUAL is a public table that you can use to view results from functions and calculations. The DUAL table is owned by t 阅读全文
posted @ 2017-07-03 20:21 寻香径 阅读(458) 评论(0) 推荐(0)
摘要:Description The Oracle/PLSQL NVL function lets you substitute a value when a null value is encountered. NVL函数是当出现空值时替换一个值 Syntax NVL( string1, replace 阅读全文
posted @ 2017-07-03 11:10 寻香径 阅读(822) 评论(0) 推荐(0)
摘要:SQL Fundamentals || Oracle SQL语言 控制操作的显示列:基本的SELECT语句 控制行:限定查询和排序显示 分组统计查询 限定查询:WHERE字句 排序显示:ORDER BY 字句 一、限定查询语法: SELECT [DISTINCT] * | 列名称 [AS] [列别名 阅读全文
posted @ 2017-07-02 20:17 寻香径 阅读(559) 评论(0) 推荐(0)
摘要:对于SQL语言,有两个组成部分: DML(data manipulation language) 它们是SELECT、UPDATE、INSERT、DELETE,就象它的名字一样,这4条命令是用来对数据库里的数据进行操作的语言。 DDL(data definition language) DDL比DM 阅读全文
posted @ 2017-06-30 20:35 寻香径 阅读(573) 评论(0) 推荐(0)
摘要:SQL Fundamentals || Oracle SQL语言 Capabilities of the SELECT Statement(SELECT语句的功能) Data retrieval from data base is done through appropriate and effic 阅读全文
posted @ 2017-06-30 19:15 寻香径 阅读(867) 评论(0) 推荐(0)