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语句。
相关推荐
emperinter27 分钟前
WordCloudStudio Now Supports AliPay for Subscriptions !
人工智能·macos·ios·信息可视化·中文分词
杨江1 小时前
ThingsBoard安装测试
服务器·数据库
mit6.8241 小时前
[Redis#4] string | 常用命令 | + mysql use:cache | session
数据库·redis·后端·缓存
Beekeeper&&P...2 小时前
map和redis关系
数据库·redis·缓存
jianqimingtian2 小时前
如何使用 Matlab 制作 GrabCAD 体素打印切片
数据结构·数据库
真真假假々2 小时前
MySQL和ADSDB
数据库·mysql
秦老师Q2 小时前
MySQL第二章 sql约束与sql数据类型
数据库·sql·mysql
不是二师兄的八戒2 小时前
mysql in查询大数据量业务无法避免情境下优化
数据库·mysql
----云烟----2 小时前
Qt获取文件夹下的文件个数(过滤和不过滤的区别)
数据库·qt
Dotrust东信创智2 小时前
浅谈丨功能安全测试,汽车的守护者
运维·服务器·数据库