5 月 05 2024 By 云博小周宇 【Oracle 12c】最新CUUG OCP-071考试题库(60题) 数据库 60、(16-10) choose the best answer: Evaluate the following SQL commands: SQL>CREATE SEQUENCE ord_s… Read More
5 月 05 2024 By 云博小周宇 [转][Windbg] Windows Memory Analysis Checklist 数据库 http://www.dumpanalysis.org/windows-memory-analysis-checklist General: Symbol servers (.symfix) Inte… Read More
5 月 05 2024 By 云博小周宇 Jmeter(十四)取样器之JDBC Request 数据库 在接口测试中,需要与数据库进行交互,这时候需要用到JDBC Request取样器。 JDBC Request可以向数据库发送一个请求(sql语句),一般它需要配合JDBC Connection Con… Read More
5 月 05 2024 By 云博小周宇 proxysql 系列 ~ 高可用架构 数据库 一 整体架构二 proxysql层 proxysql+keepalived对外提供vip 1 这里有一点要注意,虽然keepalived… Read More
5 月 05 2024 By 云博小周宇 【Oracle 12c】最新CUUG OCP-071考试题库(59题) 数据库 59、(16-8)choose two: Which two statements are true regarding the USING and ON clauses in table joins… Read More
5 月 05 2024 By 云博小周宇 【Oracle 12c】最新CUUG OCP-071考试题库(58题) 数据库 58、(16-1) choose the best answer: Examine the structure of the BOORSTRANSACTIONS table: Examine the … Read More
5 月 05 2024 By 云博小周宇 安装 MongoDB 数据库 Windows 下安装 MongoDB: 安装包下载地址:https://www.mongodb.com/download-center/community … Read More
5 月 05 2024 By 云博小周宇 mysql uodate 报错 You can't specify target table '**' for update in FROM clause 数据库 You can‘t specify target table ‘sc‘ for update in FROM clause 背景:把“sc”表中“叶平”老师教的课的成绩都更改为此课程的平均… Read More
5 月 05 2024 By 云博小周宇 git remote: HTTP Basic: Access denied Mac 使用Sourcetree 密码输错 再次输入解决方案 数据库 删除下面的key即可 Read More
5 月 05 2024 By 云博小周宇 MySQL单向加密函数 数据库 select encode(‘pual‘,‘zhangxueliang‘); select md5(‘zhangxueliang‘); 加密为null,不显示字段值: se… Read More
5 月 05 2024 By 云博小周宇 mysql-zerofill关键字 数据库 zerofill位数填充 mysql> create table shop( -> article int(4) unsigned zerofill default ‘0000‘ not … Read More
5 月 05 2024 By 云博小周宇 【Oracle 12c】最新CUUG OCP-071考试题库(57题) 数据库 57、(14-17) choose two: Examine the structure of the DEPARTMENTS table You execute the following comm… Read More
5 月 05 2024 By 云博小周宇 sqlserver 导入excel 数据库 安装完office2013和sqlserver2017时,不知道是盗版问题还是啥 原因, 在sqlserver导入excel时,报错。 在把Excel导入SQL server时出现… Read More
5 月 05 2024 By 云博小周宇 MongoDB分片搭建 数据库 MongoDB安装 安装:参考我前一篇博客:MongoDB安装。 ubuntu18.04中MongoDB3.6.3相关说明 mongodb默认服务名为: mongod mo… Read More
5 月 05 2024 By 云博小周宇 关于MySQL中的varchar类型的研究 数据库 很多人讲MySQL中varchar类型的数据大小应该设置为偶数,因为一个中文占用两个字节。今天我们来测试一下varchar大小是字符还是字节,使用工具:Navicat: 1、首先创建一个t_test表… Read More
5 月 05 2024 By 云博小周宇 CentOS7 安装 MySQL 5.7 数据库 wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.25-linux-glibc2.12-x86_64.tar.gz yum -y… Read More
5 月 05 2024 By 云博小周宇 MySQL查询(未完结) 数据库 MySql查询 单表查询: 查询所有字段 SELECT * FROM 表名; '*' 代表所有字段 查询指定字段 SELECT 字段名1, 字段名2 FROM 表名; 按照指定条件查询记录 1. 查询… Read More
5 月 05 2024 By 云博小周宇 MySQL最终任务 数据库 MySQL任务就要完成了 任务一 sql代码 SELECT D.Name Department, E1.Name Name, Salary FROM… Read More
5 月 05 2024 By 云博小周宇 MySQL事物 数据库 mysql事务的操作 (1) 开启事务 start transaction; (2) 执行SQL语句 修改、查询、删除等都可以。最好是修改或者删除,这样可以看到数据是否变化 例如: INSERT IN… Read More
5 月 05 2024 By 云博小周宇 MySQL CAST 关键字的使用 数据库 CAST 关键字的语法为: CAST(字段名 as 要转换的类型) #其中,可以转换的类型为: #CHAR(字符) #DATE(日期) #DATETIME(日期和时间) #DECIMAL(浮点型) #… Read More