SQL with MySQL

단단한어린이·2022년 4월 14일
0

Database

목록 보기
2/5
post-thumbnail

MySQL installation

  • macOS - Homebrew
    brew install mysql
    brew info mysql

  • Ubuntu(Linux) - apt-get
    sudo apt-get update
    sudo apt-get install mysql-server

Starting the MySQL Service

  • macOS
    brew services start mysql

  • Ubuntu(Linux)
    sudo systemctl start mysql

Connect MySQL

mysql -u root

SQL GUI Support Tool

  • MySQL Workbench
  • Sequel Pro (OSX)
  • Table Plus
  • DBeaver
  • DataGrip
profile
Footprints in Coding

0개의 댓글