Simple tutorial on using Navicat For MySQL

Simple tutorial on using Navicat For MySQL

recommend:

Navicat for MySQL 15 Registration and Activation Detailed Tutorial

Navicat Premium 15 permanent crack activation tool and installation tutorial (professional test available)

1. The prerequisite is that the MySQL database must be installed first (see the previous article for installing the MySQL database on Mac)

2. Install Navicat

3. Click on the upper left corner of navicate: Connection->MySQL->Test link first. If it prompts that the connection is successful, you can fill in the connection name and click Connect.

Double-click the connection you just created and there will be four databases below

Use the command line of naVicate to check how many databases there are under the connection: first select Connection->Tools on the navigation bar->Command Line Interface, a command window will pop up-> Enter: show databases; (note that there must be a semicolon at the end)


Use relevant database: use test;

Create a new database: create database xxx; or right-click under the connection and select New Database. Note: If you do not select a character set when creating, the system will default to the character set used when installing (utf8). Now the character set is generally utf8.

Check how many tables there are in the database: show tables;

View the structure of the table: desc table name

Delete a database: drop database database name

Create a new database: create database database name

1. Enter a database: use xxx;

2. create table student (id BIGINT , name VARCHAR(20),age INT);

If the database keywords are used in the table creation.

For example, create a new order table: (order), but order is a keyword in the database (used for sorting).

Table name: t_order. If the cost is the word order, use backticks (`) to enclose it, `order`.

Delete table: drop table student;

When using a tool to create a table: move to the next space (tab)

Modify the table: first select the table, then right-click and select Design Table

Summarize

The above is a simple tutorial on how to use Navicat For MySQL that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • Navicat for MySQL 15 Registration and Activation Detailed Tutorial
  • Navicat for MySQL 11 Registration Code\Activation Code Summary
  • Tutorial on installing MySQL database and using Navicat for MySQL
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • A simple method to export table structure script using Navicat for MySQL
  • Solve the problem of Navicat for Mysql connection error 1251 (connection failed)

<<:  Examples of using the ES6 spread operator

>>:  How to deploy FastDFS in Docker

Recommend

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

Docker pull image and tag operation pull | tag

I re-read the source code of the Fabric project a...

Windows 10 installation vmware14 tutorial diagram

Software Download Download software link: https:/...

Demystifying the HTML 5 Working Draft

The World Wide Web Consortium (W3C) has released a...

How to change the MySQL database directory location under Linux (CentOS) system

How to change the MySQL database directory locati...

win2008 server security settings deployment document (recommended)

I had been working on the project before the New ...

Solution to the lack of my.ini file in MySQL 5.7

What is my.ini? my.ini is the configuration file ...

Do you know what are the ways to jump routes in Vue?

Table of contents The first method: router-link (...

Implementation of Docker deployment of SQL Server 2019 Always On cluster

Table of contents Docker deployment Always on clu...

A brief understanding of the three uses of standard SQL update statements

1. Environment: MySQL-5.0.41-win32 Windows XP Pro...

Detailed explanation of common methods of JavaScript String

Table of contents 1. charAt grammar parameter ind...

How to sort a row or column in mysql

method: By desc: Neither can be achieved: Method ...

MySQL Series 7 MySQL Storage Engine

1. MyISAM storage engine shortcoming: No support ...

Install MySQL 5.7.18 using rpm package under CentOS 7

I have been using MySQL recently. The article mys...