我见过有人问同样的问题,但他们已经准备好了本地服务器,但我不知道如何制作,所以有人可以帮助我并向我演示如何制作SQL server吗
发布于 2020-11-21 16:07:57
如果您打算安装MySQL服务器,请参阅以下说明:
https://dev.mysql.com/doc/refman/8.0/en/installing.html
连接MySQL外壳的说明(8.0):
https://dev.mysql.com/doc/mysql-shell/8.0/en/mysql-shell-connection-using-parameters.html
然而,我假设你是在询问安装Microsoft SQL Server 2019的说明("SQL Server“通常被认为是指微软的数据库)。
如果您打算使用Microsoft SQL Server,您可能会发现Visual Studio 2019 Community Edition是一个更简单的工具:
https://visualstudio.microsoft.com/downloads/
https://docs.microsoft.com/en-us/visualstudio/data-tools/add-new-connections?view=vs-2019
SQL Server Data Tools for Visual Studio
https://visualstudio.microsoft.com/vs/features/ssdt/
您可能还会对EMS (支持使用MySQL、PostrgreSQL、...和SQL Server) https://www.sqlmanager.net/en/tools/free提供的免费数据库工具感兴趣
发布于 2020-11-21 16:08:47
你用的是windows吗?您需要安装服务器,因为您提到了mysql,请在此处https://dev.mysql.com/downloads/installer/下载。
安装后,您可以下载mysql客户端来管理您的服务器,如mysql工作台
https://dev.mysql.com/downloads/workbench/
也许你使用linux是因为你提到了shell?
sudo apt-get update
sudo apt-get install mysql-server配置服务器
sudo mysql_secure_installation utility启动服务
sudo systemctl start mysql启动mysql shell
/usr/bin/mysql -u root -phttps://stackoverflow.com/questions/64940945
复制相似问题