12 2019 档案
摘要:排序查询 1 #进阶3:排序查询 2 /* 3 引入 4 5 use employees; 6 select * from employees; 7 语法: 8 select 查询列表 9 from 表 10 【where 筛选条件】 11 order by 排序列表 【asc|desc】 12 特
阅读全文
摘要:条件查询 1 #进阶2:条件查询 2 /* 3 4 语法: 5 select 6 查询列表③ 7 from 8 表名① 9 where 10 条件筛选② 11 12 分类: 13 一、按条件表达式筛选 14 条件运算符:> < = != <> >= <= 15 16 二、按逻辑表达式筛选 17 漏记
阅读全文
摘要:基础查询 # 进阶1:基础查询 /* 语法: select 查询列表 from 表名; 类似于:system.out.println(打印东西); 特点: 1、查询列表可以是:表中的字段,常量值,表达式,函数 2、查询的结果是一个虚拟表 */ USE myemployees; #查询表中的单个字段
阅读全文
摘要:常见命令 1 SHOW DATABASES; 2 3 /* 4 use test; 5 create database myemployees; 6 use myemployees; 7 create table employees ( 8 employee_id int(6) primary ke
阅读全文
摘要:1 find . -maxdepth 1 -mtime +7 |xargs rm -rf
阅读全文
摘要:端口检测 1 #!/bin/bash 2 3 #list="10.68.133.104 10.68.133.105 10.68.133.106 10.68.133.107 10.68.133.108 10.68.133.109 10.68.133.110 10.68.133.111 10.68.13
阅读全文

浙公网安备 33010602011771号