Access the MySQL database by entering the DOS window through cmd under Windows

Access the MySQL database by entering the DOS window through cmd under Windows

1. Press win + R and type cmd to enter the DOS window.

2. Switch to the installation directory of MySQL server, that is, the directory where mysql.exe is located.

For example: cd C:\Program Files\MySQL\MySQL Server 5.5\bin

3. Execute the command to access the database:

For example: mysql -hlocalhost -P3306 -uroot -p

-h: server IP, localhost means local;

-P: port number, the default is 3306, optional.

-u: database connection user name

-p: Password. If a password is set, you can add it directly after -p. If no password is set, you do not need to set it.

4. Access the database and use it.

(1) Query the database instance: show databases;

(2) Select the database: use + database name, for example: use my. If the prompt "Database changed" appears, it means that the database has been switched to.

(3) Query all tables: show tables;

(4) Query table column names, table data and other data operations.

example:

show columns from user;

select uname,upass from user; 

More operations to be continued. . .

This is the end of this article about entering the DOS window to access the MySQL database through cmd under Windows. For more relevant content about accessing MySQL from the Windows cmd window, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Windows cmd command line input and output redirection problem
  • Windows CMD Commands (worth collecting)
  • How to copy Windows cmd window command line information
  • How to call cmd command and execute exe program in Java in Windows system
  • How to execute cmd commands in windows using java
  • How to start Windows applications, execute bat batch processing, and execute cmd commands with PHP (detailed explanation of exec and system functions)
  • Windows PowerShell cmdlets
  • How to hide cmd command prompt window when running bat batch file in Windows
  • A complete list of commonly used CMD commands in Windows XP system

<<:  Vue implements the full selection function

>>:  How to use CSS attribute selectors to splice HTML DNA

Recommend

How to check disk usage in Linux

1. Use the df command to view the overall disk us...

Detailed explanation of JavaScript stack and copy

Table of contents 1. Definition of stack 2. JS st...

Installation tutorial of mysql8.0rpm on centos7

First, download the diagram 1. First uninstall th...

Simple summary of tomcat performance optimization methods

Tomcat itself optimization Tomcat Memory Optimiza...

How to insert batch data into MySQL database under Node.js

In the project (nodejs), multiple data need to be...

GZIP compression Tomcat and improve web performance process diagram

1. Introduction I recently worked on a project an...

Summary of the dockerfile-maven-plugin usage guide

Table of contents pom configuration Setting.xml c...

Analysis of MySQL lock wait and deadlock problems

Table of contents Preface: 1. Understand lock wai...

CSS makes tips boxes, bubble boxes, and triangles

Sometimes our pages will need some prompt boxes o...

Linux system MySQL8.0.19 quick installation and configuration tutorial diagram

Table of contents 1. Environment Introduction 2. ...

Vue/react single page application back without refresh solution

Table of contents introduction Why bother? Commun...

Enable sshd operation in docker

First, install openssh-server in docker. After th...

MySQL 5.7.18 download and installation process detailed instructions

MySql Download 1. Open the official website and f...

Example of converting timestamp to Date in MySQL

Preface I encountered a situation at work: In the...

The principle and application of MySQL connection query

Overview One of the most powerful features of MyS...