上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 84 下一页
摘要: Which statement is true regarding transactions? (Choose all that apply.)A. A transaction can consist only of a set of DML and DDL statements.B. A part 阅读全文
posted @ 2017-11-30 17:48 巴啦啦大魔王 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Exists:子查询至少返回一行时条件为true。 Not Exists:子查询不返回任何一行时条件为true。 In:与子查询返回结果集中某个值相等。-- in null不会显示为null的值,因为null是未知的所以不会有=null,要查询为null的请用is null Not In:与子查询返 阅读全文
posted @ 2017-11-30 15:37 巴啦啦大魔王 阅读(289) 评论(0) 推荐(0) 编辑
摘要: View the Exhibit and examine the structure of the PRODUCTS table.You want to display the category with the maximum number of items.You issue the follo 阅读全文
posted @ 2017-11-30 14:35 巴啦啦大魔王 阅读(98) 评论(0) 推荐(0) 编辑
摘要: Which three statements are true about multiple-row subqueries? (Choose three.)A. They can contain a subquery within a subquery.B. They can return mult 阅读全文
posted @ 2017-11-30 14:11 巴啦啦大魔王 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Which two statements are true regarding subqueries? (Choose two.)(关于子查询哪两句话是正确的?)A. A subquery can retrieve zero or more rows.(子查询能检索 0 行或多行)B. Only t 阅读全文
posted @ 2017-11-30 13:38 巴啦啦大魔王 阅读(96) 评论(0) 推荐(0) 编辑
摘要: Examine the data in the CUSTOMERS table: CUSTNO CUSTNAME CITY You want to list all cities that have more than one customer along with the customer det 阅读全文
posted @ 2017-11-29 18:20 巴啦啦大魔王 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1.coalesce(expr1,expr2........) 返回从左起始第一个不为空的值,如果所有参数都为空,那么返回空值。2.NULLIF(expr1,expr2)如果expr1等于expr2返回null否则返回expr1.3.DUMP函数用来判断数据类型select dump(1111) f 阅读全文
posted @ 2017-11-28 16:47 巴啦啦大魔王 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 索引两大类 B树索引和位图索引。1.当表被删除后,对应的索引也自动删除 2.表中的非延迟 PRIMARY KEY 或者 UNIQUE KEY 约束自动创建一个唯一索引 3.对于执行的每一个 DML 操作,对应的索引也自动更新 4.FOREIGN KEY 和 NOT NULL、 CHECK 约束都不创 阅读全文
posted @ 2017-11-27 15:03 巴啦啦大魔王 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 序列的两个伪列:currval 序列的当前值,反复引用时该值不变。nextval序列的下一个值,每次引用按步长自增。 CREATE SEQUENCE se1INCREMENT BY 10START WITH 50MAXVALUE 100CYCLENOCACHE 第一次要引用一下 nextval伪列s 阅读全文
posted @ 2017-11-27 14:35 巴啦啦大魔王 阅读(171) 评论(0) 推荐(0) 编辑
摘要: create table 表名 (字段名 --长度);一般表名要以字母开头表名的长度为 1-30 个字符 ,可以包含字母、数字下划线(_),美元符($),井字号(#) 表的列最多为 1000 个 ,有 DEFAULT 值的列可以存储空值 相同的 schema 里,表和视图的名字不能相同 1)表,视图 阅读全文
posted @ 2017-11-24 17:27 巴啦啦大魔王 阅读(479) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 84 下一页