Download of Mysql management interface Sequel pro under mac

Official website download: http://www.sequelpro.com/

It is said that downloading from the official website is extremely slow, so

Network disk resources:

Click -> Link: sequel pro (a tool dedicated to managing Mysql) extraction code: 6rk4

Basic usage:

Start the application to connect to the mysql database

Insert image description here

Sequel Pro provides 3 connection methods, standard/socket/ssh.

I am using standard mode, and I only need to provide the following items to access the server

  • Name: Remark name, you can choose it casually, as long as you know which database you are connecting to.
  • Username: mysql username.
  • Host: Server IP address/specific domain name.
  • Password: Password.
  • Database: The default database to connect to. This is optional. If you know which database to operate, fill it in. If you don’t know, you don’t need to fill it in.
  • Port: The default port number when mysql is installed is 3306, which depends on your company or your configuration.
After filling in, the page will look like this:

Insert image description here
Their role:

  • Add to Favorites: Store the connection information in the "FAVORITES" column on the left to facilitate the next connection.
  • Save changes: If you already have a connection, but want to modify the connection settings, you can click this option after making changes.
  • Test Connection: Test connection. This function is very considerate. You can test whether the connection is successful before officially connecting.
After entering the correct account number and password, you will enter the main interface.

Insert image description here

  • The following is divided into several modules, namely:

    • Select database
      Insert image description here
    • View table structure
      Insert image description here
    • View table contents
      Insert image description here
    • View the relationship between two tables
      Insert image description here
    • Triggers: Never used.
    • Table Info: Introduction information of the table, including table size, primary key and other information.
    • Query: You can write sql query statements here, or you can write stored procedures, etc. Insert image description here
      Execute a certain row: Select the sql you want to execute, and then press cmd+R.
The above is a simple application of Mysql management interface Sequel pro✌️

Guess you like

Origin blog.csdn.net/khadijiah/article/details/106001831