Database management tool SQLyog

SQLyog

  • SQLyog is a fast and concise graphical management tool for MYSQL database. It can effectively manage your database at any location. It is produced by the famous Webyog company in the industry.
  • Using SQLyog can quickly and intuitively allow you to maintain a remote MySQL database through the network from any corner of the world.

Download link: https://github.com/webyog/sqlyog-community/wiki/Downloads

1. Basic operation

1 Connect to local Mysql:

Insert picture description here

2 database table operations:

Insert picture description here

3 Create a database

Insert picture description here
Base character set: general choiceutf8. utf8mb4 is compatible with utf8 and can represent more characters than utf8.
Database sorting rules: sort generally choose utf_bin orutf_general_ci

  • utf8_bin: each character string is compiled and stored with binary data. Case sensitive, and can store binary content
  • utf8_general_ci: It is case-insensitive, and the proofreading speed is fast, but the accuracy is slightly worse. (The accuracy is sufficient, generally choose this

4 Create a table:

Insert picture description here

Guess you like

Origin blog.csdn.net/glpghz/article/details/108768304