2018年5月4日

Daily

摘要: nurse 护士 complexity 复杂性 intense 激烈 hydrate 水合物 dehydration 脱水 assume 假定/承担 tariff 关税 chill 寒意 scheme /skiːm/ 方案 temporarily 暂时 versatile 多才多... 阅读全文

posted @ 2018-05-04 22:34 TrancezZ 阅读(192) 评论(0) 推荐(0)

Programming02

摘要: fleet 舰队 collision 冲突/碰撞 confine 边界 ensue 接着发生 parallelism 平行/类似 dummy 仿制品/假的 identify 识别 primitive 原始的 bound 束缚 unbound 释放/未装订的 unbounded 无限制的 expire(d) 期满/失效 pha... 阅读全文

posted @ 2018-05-04 22:23 TrancezZ 阅读(77) 评论(0) 推荐(0)

Programming01

摘要: invoke 调用 interpreter 翻译员 interactive 互动 syntax 语法 decimal十进制 小数 fraction 分数 3/4 suffix /下标 后缀 prefix 前缀 imaginary 虚构 manipulate 操作 literal 文字 concatenate ... 阅读全文

posted @ 2018-05-04 22:22 TrancezZ 阅读(106) 评论(0) 推荐(0)

013-MySQL_03-多表查询

摘要: 使用多表查询的前提 : 多个表中有内容相同的字段(字段名可以不同) 使用多表查询的前提 : 多个表中有内容相同的字段(字段名可以不同) 关联查询(连接查询) : 内连接查询 : select * from students inner join classes on students.cls_id = classes.id; 可以内连接 + 子查询 查询两个表的交集(相同内容) 左连接... 阅读全文

posted @ 2018-05-04 22:20 TrancezZ 阅读(110) 评论(0) 推荐(0)

012-MySQL_02-单表CRUD

摘要: 向表中增加数据 : insert into 表名 (字段名1,字段名2,…) values(值1,值2,….); 向表中修改数据 : update 表名 set 字段名1 = 值1,字段名2 = 值2,… where 条件; 向表中删除数据 : ① 物理删除 delete from 表名 where 条件; ② 逻辑删除 给表添加一个 is_dele... 阅读全文

posted @ 2018-05-04 22:19 TrancezZ 阅读(93) 评论(0) 推荐(0)

011-MySQL_01-设计库/表

摘要: 1 进入 MySQL : mysql -u(用户名) -p 2 显示 MySQL 中的数据库 : show databases; 3 创建数据库 : create database xxx charset=utf8; 4 使用数据库 : use xxx; 5 删除数据库 : drop database xxx; 6 创建&设计表 : create table xxx (字段名1 类型 [约束],... 阅读全文

posted @ 2018-05-04 22:18 TrancezZ 阅读(95) 评论(0) 推荐(0)

导航