自动补全 上下光标 退出 ls命令说明 ls通配符的使用 cd 常用选项 相对路径绝对路径 touch简介 mkdir常用操作 rm指令 tree(CentOS中安装可能会出...

自动补全 上下光标 退出 ls命令说明 ls通配符的使用 cd 常用选项 相对路径绝对路径 touch简介 mkdir常用操作 rm指令 tree(CentOS中安装可能会出...
<!DOCTYPE html> ul{list-style: none;} 篮球 足球 排球 网球 全选 反选 var aInp...
<!DOCTYPE html> body{background: #5C5C5C;}ul{list-style: none;padding: 0;margin: ...
<!DOCTYPE html> body{margin: 0;}#box{width: 100px;height: 100px;border: 5px solid ...
<!DOCTYPE html> *{padding: 0;margin: 0;}ul{list-style: none;}a{text-decoration: no...
<!DOCTYPE html>
标题
public class JDBCDemo1 { public static void main(String[] args) { //1.加载数据库驱动程序(需要把驱动加载...
- 插入语句的一些补充 create table emp_copy4 AS select * from emp where sal = null -- 子查询插入多条数据 i...
-- any 任何一个 -- 查询高于10部门任意一名员工 select * from emp where sal > any(select sal from emp whe...
-- 1.查询部门平均工资在2500元以上的部门名称及平均工资。 select d.dname ,avg(e.sal) from dept d join emp e on d...
-- 查询所有工作在new york 和chicago的员工姓名 员工编号 以及它们的经理姓名 经理编号 select e.ename,e.empno,m.ename,m.e...
-- 建表 -- 新建一张表 create table 表名( .... ) -- 子查询建表 只继承结构和数据 不继承约束 create table emp_copy as...
-- 建表 -- 数值 int bigint bit decimal float DOUBLE -- 字符型 varchar longtext [set enum] -- 日...
-- 创建表 create TABLE -- 删除表 drop TABLE create TABLE test1( num INT ) drop table test1; -...