在源用户readonly 下创建只读用户 reader
readonly 的表空间为AA
一、创建只读用户
create user reader identified by 密码 default tablespace AA;
二、授权 grant connect to reader ;
三、获取原账号readonly 的查询权限
select grant select on ||owner||.||object…
第四题:T4组合数
标签:组合数学题意:求组合数 C n m C_n^m Cnm,即从 n n n个不同的数字中取出 m m m个数字的方案数,结果对 1 , 000 , 000 , 007 1,000,000,007 1,000,000,007取模( 1 ≤ m ≤ n ≤ 1 0 …