当前位置:首页 > 数据库 >

文章分类:数据库

数据库 mysql5.7的安装配置

mysql官方下载地址: https://dev.mysql.com/downloads/mysql/ 安装步骤: 1 .下载tar包到opt目录下wget https: // cdn.mysql.com // Downloads/MySQL-5.7/mysql-5.7.27-el7-x86_64.tar.gz /opt/ 2 .查看机器是否安装过其他版本……

数据库 MySQL 联合索引使用情况

验证联合索引使用的情况 索引是一个排序的结构,用于快速检索和加速排序 MySQL表结构 index_test | CREATE TABLE `index_test` ( `c1` char(10) NOT NULL, `c2` char(10) NOT NULL, `c3` char(10) NOT NULL, `c4` char(1……

数据库 MSSQL 插入数据时候,如果存在则更新的方法分享

摘要: 下文讲述MSSQL中,插入数据时,如果存在则更新,否则就插入数据的方法分享 实验环境:sql server 2017 mssql中,我们可以采用 MERGE INTO 关键字实现此功能, 当两者匹配成功,则运行*……

数据库 数据库系统概论(1)

1.1 数据库系统概述 1.1.1 数据库的四个概念 数据(data)、数据库(database)、数据管理系统(DataBase Management System, DBMS)、数据库系统(DataBase System, DBS)是与数据库基本相关的四个概念……

数据库 [ARIA] What is Accessible Name Calculation?

What‘s in a name? In this lesson, I‘ll explain the concept of naming interactive elements for screen reader users, including forms, buttons, and links. You‘ll learn how to debug accessible names and descriptions using the Chrome Acces……

数据库 mysql中查看ef或efcore生成的sql语句

http://www.solves.com.cn/it/sjk/MYSQL/2019-07-01/1336.html 涉及命令 1、开启general log模式 MySQL set global general_log=on; 2、关闭general log模式 mysqlset global general_log=off; 3、设置log文件路径 mysqlset global gene……

数据库 MongoDB 安装教程

(一) 下载 建议下载3.6版本的,前面下载的4.2版本安装不上 https://www.mongodb.com/download-center/community?jmp=nav (二) 取消勾选 (三) 在bin 的同级目录创建一个文件夹为data (1) cmd 进入BIN目录……

数据库 在使用JDBC连接数据库是出现java.sql.SQLException: No value specified for

在使用JDBC连接数据库是出现java.sql.SQLException: No value specified for parameter 1 检查后发现是:因为执行executeQuery()先于对sql语句中的占位符赋值,导致No value specified for parameter 1,看源码 修改……

数据库 MySQL问题

将列字段的属性修改成utf8 alter table `tablename ` convert to charset utf8 ;……