摘要: 1.将如下代码添加到记事本中,并另存为Hyper-V.cmd文件。代码如下: pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hy 阅读全文
posted @ 2021-11-24 18:30 George_King 阅读(2490) 评论(0) 推荐(0) 编辑
摘要: 表一 (t1): 表二 (t2): 表一转表二: selectname,sum(case subject when '语文' then score end) 语文,sum(case subject when '数学' then score end) 数学,sum(case subject when 阅读全文
posted @ 2020-07-06 16:33 George_King 阅读(100) 评论(0) 推荐(0) 编辑
摘要: --2020年3月30日 AM 1、表连接 1.1 笛卡尔积(交叉连接) cross join select * from emp,dept;select * from emp cross join dept;--行级执行,从emp中取每条数据与dept的每条数据进行连接 --PM select * 阅读全文
posted @ 2020-06-19 15:37 George_King 阅读(236) 评论(0) 推荐(0) 编辑
摘要: --2020年3月28日-29日 周末 1、建表 CREATE TABLE STUDENT (SNO VARCHAR(3) NOT NULL, SNAME VARCHAR(4) NOT NULL, SSEX VARCHAR(2) NOT NULL, SBIRTHDAY DATE, CLASS VAR 阅读全文
posted @ 2020-06-18 19:06 George_King 阅读(128) 评论(0) 推荐(0) 编辑
摘要: --2020年3月27日 AM 0、函数扩展 0.1 wm_concat 同字段拼接 select wm_concat(ename) from emp; select replace(wm_concat(ename),',','%%') from emp; 0.2 next_day select n 阅读全文
posted @ 2020-06-17 20:26 George_King 阅读(175) 评论(0) 推荐(0) 编辑
摘要: -- 2020年3月26日 AM 0、知识回顾 select * from emp; insert into emp(empno, ename, job) values (22, kk, pp); insert into emp(empno, ename, job) select * from de 阅读全文
posted @ 2020-06-16 19:16 George_King 阅读(256) 评论(0) 推荐(0) 编辑
摘要: --2020年3月25日 AM 昨日回顾 0.1insert into emp1(empno,job) select deptno, dname from dept;--保证目标字段和源字段类型相同、长度满足即可插入,也不绝对 0.2 大对象模式 调出建表语句select dbms_metadata 阅读全文
posted @ 2020-06-11 17:39 George_King 阅读(181) 评论(0) 推荐(0) 编辑
摘要: --2020年3月24日 AM 1、DDL 数据定义语言创建对象 1.1Oracle数据类型主要有:字符串、数值、日期 mssql:float、medical、int(bight,int,smallint,tinyint) char(18):固定字长,例如性别、身份证号 varchar(10):可变 阅读全文
posted @ 2020-06-04 23:07 George_King 阅读(224) 评论(0) 推荐(0) 编辑
摘要: --2020年3月23日 AMselect * from emp; select EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO from emp where comm is null; --字符串、数值、日期 1985年后入职 select 阅读全文
posted @ 2020-06-02 22:12 George_King 阅读(327) 评论(0) 推荐(0) 编辑