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

Install mysql offline using rpm under centos 6.4

Use the rpm installation package to install mysql...

How to expand the disk space of Linux server

Table of contents Preface step Preface Today I fo...

Detailed explanation of the fish school algorithm in CocosCreator game

Preface I recently wanted to learn CocosCreator, ...

React handwriting tab switching problem

Parent File import React, { useState } from '...

How to modify iTunes backup path under Windows

0. Preparation: • Close iTunes • Kill the service...

Installation and use of mysql on Ubuntu (general version)

Regardless of which version of Ubuntu, installing...

The difference between datatime and timestamp in MySQL

There are three date types in MySQL: date(year-mo...

A case study on MySQL optimization

1. Background A sql-killer process is set up on e...

Docker exposes port 2375, causing server attacks and solutions

I believe that students who have learned about th...

Detailed explanation of the application of CSS Sprite

CSS Sprite, also known as CSS Sprite, is an image...