上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 206 下一页
摘要: 注意:返回数量为0时函数返回值为false,返回数量为非零值时为true。 Java函数: boolean hasSameServiceCode(@Param("oldDepotCd") String oldDepotCd,@Param("newDepotCd") String newDepotCd 阅读全文
posted @ 2020-04-07 16:01 逆火狂飙 阅读(9441) 评论(0) 推荐(1)
摘要: 除了平均数外,众数和中位数也是衡量集合的标尺之一,中位数是将集合升序排列后恰好位于正中间的元素,如果集合总数为偶数,则取中间两个元素的平均值作为中位数,下文将就用SQL去求中位数展开讨论。 首先建表: create table tb_coder( id number(4,0) not null pr 阅读全文
posted @ 2020-04-05 16:30 逆火狂飙 阅读(633) 评论(2) 推荐(0)
摘要: 高中数学/导数 (多选)已知a>e时,对任意x∈R,f(x)=(e^x-ax)*(x^2-bx+c)≥0恒成立,则下列判断正确的是() A、方程e^x-ax有且仅有两个不同的实数解 B、b^2-4C>0 C、e^b=ac D、a*e^(b-a)/c的最大值为27/e^3 答案ABD。 一道值得推敲玩味的导数多选题。 阅读全文
posted @ 2020-04-05 08:52 逆火狂飙 阅读(346) 评论(0) 推荐(0)
摘要: 用Html5/Canvas绘制正义联盟之刃。 阅读全文
posted @ 2020-04-04 12:03 逆火狂飙 阅读(985) 评论(0) 推荐(0)
摘要: 用Canvas绘制四条L形围成的莫比乌斯环 阅读全文
posted @ 2020-04-03 11:03 逆火狂飙 阅读(1605) 评论(0) 推荐(0)
摘要: 表结构: create table hy_emp( id integer, name nvarchar2(20) not null, age integer not null, salary integer not null, cdate date not null) 注意这里没有设定主键,目的是插 阅读全文
posted @ 2020-04-03 10:51 逆火狂飙 阅读(423) 评论(0) 推荐(0)
摘要: 表结构: create table hy_emp( id number(7,0) primary key, name nvarchar2(20) not null, salary number(5,0) not null) 充值: insert into hy_emp select rownum,d 阅读全文
posted @ 2020-04-03 09:33 逆火狂飙 阅读(224) 评论(0) 推荐(0)
摘要: 学生表: create table hy_student( id number(4,0) primary key, name nvarchar2(20) not null, score number(3,0) not null) 充值: insert into hy_student select r 阅读全文
posted @ 2020-04-02 14:24 逆火狂飙 阅读(1322) 评论(0) 推荐(0)
摘要: --表结构 create table hy_emp( id number(4,0) primary key, name nvarchar2(20) not null, edate date) --充值 insert into hy_emp select rownum,dbms_random.stri 阅读全文
posted @ 2020-04-02 08:28 逆火狂飙 阅读(186) 评论(0) 推荐(0)
摘要: 此例源自美团的一道SQL面试题 支付表结构: create table hy_payment( id number(4,0) primary key, pay number(3,0) not null) 可以这样给它充值: insert into hy_payment(id,pay) values( 阅读全文
posted @ 2020-04-01 12:42 逆火狂飙 阅读(157) 评论(0) 推荐(0)
上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 206 下一页