上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 90 下一页
摘要: 按部门统计员工人数:部门号,部门名称,各部门人数 select d.deptno, d.dname, count(e.empno) from dept d, emp e where d.deptno = e.deptno group by d.deptno, d.dname 上诉结果没有出现40号部 阅读全文
posted @ 2020-07-04 15:09 王清河 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 先上代码 #include<cstdio> #include<cstring> #define OFFSET(TYPE, MEMBER, OFF) \ TYPE temp; \ OFF = (unsigned long)(&(temp.MEMBER)) - (unsigned long)(&(tem 阅读全文
posted @ 2020-06-29 10:12 王清河 阅读(215) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<cstdlib> int main() { union { short s; char c[sizeof(s)]; }un; un.s = 0x0102; if (sizeof(short) == 2) { if (un.c[0] == 1 && 阅读全文
posted @ 2020-06-27 09:58 王清河 阅读(146) 评论(0) 推荐(0) 编辑
摘要: --求员工表的最高工资,最低工资,平均工资,所有工资 select max(sal) 最高工资, min(sal) 最低工资, avg(sal) 平均工资, sum(sal) 所有工资 from emp; --求平均奖金 select avg(comm) 方式1, sum(comm)/count(e 阅读全文
posted @ 2020-06-20 11:12 王清河 阅读(241) 评论(0) 推荐(0) 编辑
摘要: --sysdate:输出默认时间 日-月-年 select to_char(sysdate, 'yyyy-mm-dd hh24:mi:ss') from dual; //按照指定格式输出时间信息 --日期的运算 计算:入职时间,天,周,月,年 select ename,(sysdate-hireda 阅读全文
posted @ 2020-06-20 11:08 王清河 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 大小写控制函数 select LOWER("Hello Worldorld") 转小写, upper('hello worlld')转大写 , INITCAP('hello worLD') from dual; 字符串连接函数 select '111' || 'bbb' from dual; sel 阅读全文
posted @ 2020-06-20 11:06 王清河 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖时,包找不到 解决:包一个一个安装 另外 libeigen4-dev 这个库只有 libeigen3-dev这个版本 阅读全文
posted @ 2020-06-18 17:18 王清河 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖 sudo apt-get install build-essential。 sudo apt-get install qt4-dev-tools qt4-doc qt4-qtconfig qt4-demos qt4-designer qtcreator 2.查看版本 qmake -v 阅读全文
posted @ 2020-06-18 17:15 王清河 阅读(1928) 评论(0) 推荐(1) 编辑
摘要: Map2DFusion https://github.com/zdzhaoyong/Map2DFusion svo环境 https://blog.csdn.net/u014389734/article/details/78918142 svo环境搭建 https://blog.csdn.net/we 阅读全文
posted @ 2020-06-17 16:35 王清河 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 1.查看系统默认 qt 版本 qmake -v 2.打开文件路径 /usr/lib/x86_64-linux-gnu/qt-default/qtchooser cd /usr/lib/x86_64-linux-gnu/qt-default/qtchooser 3.修改 default.conf 文件 阅读全文
posted @ 2020-06-17 16:13 王清河 阅读(1564) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 90 下一页