上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 206 下一页
摘要: 17个常用导数表手写版 阅读全文
posted @ 2020-01-31 09:56 逆火狂飙 阅读(8897) 评论(0) 推荐(0)
摘要: 古典概型题,送分。 阅读全文
posted @ 2020-01-31 09:55 逆火狂飙 阅读(529) 评论(2) 推荐(0)
摘要: 转载地址:https://database.51cto.com/art/202001/609727.htm 阅读全文
posted @ 2020-01-30 17:52 逆火狂飙 阅读(137) 评论(0) 推荐(0)
摘要: 【数学思路】 该问题分两类 一类是取出红蓝白黑四色球,其排法是A_4_4=24种 一类是取出两个黑球加两个其它颜色的球,两黑球和两色球排列是一个可重复元素的全排列问题,其排法是A_4_4/A_2_2/A_1_1/A_1_1=24/2=12种,从红蓝白中选出两色球是C_3_2=3种,故总数是12*3= 阅读全文
posted @ 2020-01-30 17:42 逆火狂飙 阅读(86) 评论(0) 推荐(0)
摘要: SQL> select table_name from user_tables order by table_name; TABLE_NAME BIGTABLE COURSE EMP HY_MILLION HY_MILLION2 SCORE SMALLTABLE STUDENT TB_100MILL 阅读全文
posted @ 2020-01-29 13:06 逆火狂飙 阅读(820) 评论(0) 推荐(0)
摘要: 比如有这么一个表: create table test02( id number(8,0) primary key, name nvarchar2(20), sal number(5,0) ) 可以这样给它充值: insert into test02 select rownum,dbms_rando 阅读全文
posted @ 2020-01-29 09:27 逆火狂飙 阅读(2192) 评论(2) 推荐(0)
摘要: select emp.*,dept.* from tb_emp03 emp,tb_dept03 dept where emp.deptno=dept.id -- 不加hint SQL> select emp.*,dept.* from tb_emp03 emp,tb_dept03 dept wher 阅读全文
posted @ 2020-01-28 17:08 逆火狂飙 阅读(212) 评论(0) 推荐(0)
摘要: 索引全扫描的执行计划: SQL> select max(age) from tb_emp04 emp; 已用时间: 00: 00: 00.01 执行计划 Plan hash value: 2758779452 | Id | Operation | Name | Rows | Bytes | Cost 阅读全文
posted @ 2020-01-28 16:52 逆火狂飙 阅读(528) 评论(0) 推荐(0)
摘要: 先准备实验材料: 一张表及其数据: create table tb_emp04( id number(8,0) primary key, name nvarchar2(20), age number(2,0) ) insert into tb_emp04 select rownum,dbms_ran 阅读全文
posted @ 2020-01-28 12:49 逆火狂飙 阅读(493) 评论(0) 推荐(0)
摘要: 对数十大经典公式 阅读全文
posted @ 2020-01-28 04:26 逆火狂飙 阅读(312) 评论(0) 推荐(0)
上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 206 下一页