代码搜索:新算法贪新算法
找到约 10,000 项符合「新算法贪新算法」的源代码
代码结果 10,000
www.eeworm.com/read/164520/5489461
dat 新试验.dat
"3","*********","*********","32","*********","*********","69","*********","*********","","*********","*********","","*********","*********","","*********","*********","","*********","*********","","**
www.eeworm.com/read/365918/2894343
txt 陈平新.txt
1,从控制台打印下列信息(用签套的循环,外层循环控制行,内层循环控制*号的个数以及出现的样式)
*
***
*****
*******
*****
***
*
declare
i int;
--k int;
--j int;
begin
www.eeworm.com/read/365918/2894355
txt 陈平新.txt
1,给一个表创建视图,该试图不包含约束为not null的列,怎么给该视图插入数据?对于not null约束的列,可以给个常量作为该列的默认值。
2,创建一个序列
3,用scott用户登陆,建一张表,至少包含id,name,sex,date列,插入1000000条数据,为了防止表名重复,建议大家用自己的名字做表名。用练习2创建的序列给该表的id加值,列id为该表的主键
给name列创建 ...
www.eeworm.com/read/365918/2894374
txt 陈平新.txt
1,创建一个商品表 和 种类表;要求用到五个约束
create table cpx_pro_table (pid number(5),name varchar2(20), -----创建商品表
price number(12),pro_name varchar2 (33),pro_date number(33),kid int(10));
create table cpx_k
www.eeworm.com/read/365918/2894394
txt 陈平新.txt
以下练习以emp,dept为准进行查询:
1,查询出每种工作的平均工资
1 select job ,avg(sal) from emp group by job;
2,查询出那种工作的工资最高
2 select job ,sal from emp where sal=(select max(sal) from emp);
3,查询出工资最底的经理的名字
select e
www.eeworm.com/read/365918/2894422
txt 陈平新.txt
一,创建四个游标
declare
cursor emp_c2
is select ename,job,sal from emp where sal>3000;
type emp_record_type is record(
empname emp.ename%type,
emp
www.eeworm.com/read/365918/2894454
txt 陈平新.txt
第一题:
/*
create or replace function mysum (n int)
return int
is
i int;
sumb int :=0;
P_number exception;
begin
if n
www.eeworm.com/read/154133/5640370
dat 新热量.dat
"3","*******","*******","13","*******","*******","31","*******","*******","","*******","*******","","*******","*******","","*******","*******","","*******","*******","","*******","*******","","*******
www.eeworm.com/read/154133/5640371
dat 新试验.dat
"3","*********","*********","32","*********","*********","69","*********","*********","","*********","*********","","*********","*********","","*********","*********","","*********","*********","","**
www.eeworm.com/read/269552/11094025