Mac创建本地数据库并连接

文章目录

一、下载安装MySql数据库

在MySql官网下载MySQL Community Server

可以选择默认配置安装数据库

二、查看本地MySQL

可以在本地"系统偏好设置"最下方,查看自己的MySql服务是否正常

也可以在终端输入查看,会提示你输入密码:

/usr/local/mysql/bin/mysql -u root -p

Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.2.0 MySQL Community Server - GPL

Copyright (c) 2000, 2023, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

三、Navcat连接数据库

如果提示连接失败,可以尝试

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';

错误的原因是由于从mysql5.7版本之后,验证方式默认从原来的mysql_native_password改成了caching_sha2_password,你如果下载安装的是最新的版本,那就会有这个问题。如果是安装包安装的5.7及以前版本则不存在此问题。

四、样例表脚本

mysql样例创建脚本

包含两个脚本 create.sql 和 populate.sql.

在客户端运行脚本可以创建出样例表

  • create.sql包含创建6个数据库表(包括所有主键和外键约束)的MySQL语句。
  • populate.sql包含用来填充这些表的INSERT语句。
相关推荐
Ai 编码助手1 小时前
MySQL中distinct与group by之间的性能进行比较
数据库·mysql
陈燚_重生之又为程序员1 小时前
基于梧桐数据库的实时数据分析解决方案
数据库·数据挖掘·数据分析
caridle2 小时前
教程:使用 InterBase Express 访问数据库(五):TIBTransaction
java·数据库·express
白云如幻2 小时前
MySQL排序查询
数据库·mysql
萧鼎2 小时前
Python并发编程库:Asyncio的异步编程实战
开发语言·数据库·python·异步
^velpro^2 小时前
数据库连接池的创建
java·开发语言·数据库
荒川之神2 小时前
ORACLE _11G_R2_ASM 常用命令
数据库·oracle
IT培训中心-竺老师2 小时前
Oracle 23AI创建示例库
数据库·oracle
小白学大数据2 小时前
JavaScript重定向对网络爬虫的影响及处理
开发语言·javascript·数据库·爬虫
time never ceases2 小时前
使用docker方式进行Oracle数据库的物理迁移(helowin/oracle_11g)
数据库·docker·oracle