Special commands in MySql database query

Special commands in MySql database query

First: Installation of MySQL

Download the MySQL software and modify the installation path

Install the MySQL database 5.7.18

Step 1: Database MySQL5.7.18 can be downloaded from the official website, download address: http://www.filehorse.com/download-mysql-64/,

Step 2: Unzip the downloaded installation package to a disk.

Step 3: Configure environment variables, create a new environment variable MySQL_HOME, and enter the MySQL installation directory.

Then insert ;%MYSQL_HOME%\bin to the end of Path;

Step 4: Run the command line as an administrator, press win+R, enter cmd, right-click and run as an administrator.

Step 5: Switch to the MySQL installation directory and install it using mysqld:

Initialize data: mysqld --initialize-insecure --user=mysql,

Start the service: mysqld --user=mysql,

Initialize mysql root password mysqladmin -u root password 'new-password',

See https://dev.mysql.com/doc/refman/5.7/en/data-directory-initialization-mysqld.html for details.

Step 6: Register service mysqld --install MySQL

Start the service with the net start mysql command.

Enter the mysql -u root -p command: Then fill in the password entered when initializing the database in step 5, as shown below:

Enter show databases; in the mysql command to view the tables in the database, as shown in the following figure:

This indicates that the database has been installed successfully.

Second: Database special query statement

Sort in descending order, select name from data order by name desc; ---- here desc means sort in descending order

Query based on relative column position, select name, price from data order by 2,3; ----- 2,3 means sorting by the second column first, then by the third column.

Note: If you want to sort in descending order on multiple columns, you must specify each column with desc.

third:

The difference between creating a new link and creating a new database in Navicat database software

Creating a new link is to create a data link object, which contains the database

To create a data link,

Select the type of database link to create. Mine is MySQL, set the link name, password and port number.

Electronic MySQL create database

This will create the database.

Summarize

The above are the special commands in MySql database query 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. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • 18 common commands in MySQL command line
  • Common operation commands of MySQL in Linux system
  • Centos7 restart apache, nginx, mysql, php-fpm command method
  • How to implement import and export mysql database commands under linux
  • Detailed explanation of the EXPLAIN command and its usage in MySQL
  • MySql common query command operation list
  • How to use commands in Mysql to achieve hierarchical search help detailed explanation
  • Solve the Chinese garbled problem of mysql5.5 database command line under Windows 10
  • Summary of Commonly Used MySQL Commands in Linux Operating System
  • Mysql uses the kill command to solve the deadlock problem (kill a certain SQL statement being executed)
  • MySQL 5.7 mysql command line client usage command details
  • MySQL database source command detailed explanation and examples
  • Common commands for mysql authorization, startup, and service startup

<<:  CentOS 7 switching boot kernel and switching boot mode explanation

>>:  Eight implementation solutions for cross-domain js front-end

Recommend

MySQL index optimization: paging exploration detailed introduction

Table of contents MySQL Index Optimization Paging...

How to use @media in mobile adaptive styles

General mobile phone style: @media all and (orien...

The difference and usage of Vue2 and Vue3 brother component communication bus

Table of contents vue2.x vue3.x tiny-emitter plug...

Solve the problem of forgetting password in MySQL 5.7 under Linux

1. Problem Forgot password for mysql5.7 under lin...

How to purchase and install Alibaba Cloud servers

1. Purchase a server In the example, the server p...

The latest graphic tutorial of mysql 8.0.16 winx64 installation under win10

In order to download this database, it takes a lo...

Install two MySQL5.6.35 databases under win10

Record the installation of two MySQL5.6.35 databa...

How to check the hard disk size and mount the hard disk in Linux

There are two types of hard disks in Linux: mount...

Vue implements dynamic routing details

Table of contents 1. Front-end control 1. In the ...

How to deploy Rancher with Docker (no pitfalls)

Must read before operation: Note: If you want to ...

Simple example of HTML checkbox and radio style beautification

Simple example of HTML checkbox and radio style b...

Demystifying the HTML 5 Working Draft

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

Solve the problem of Docker starting Elasticsearch7.x and reporting an error

Using the Docker run command docker run -d -p 920...

How does Vue implement communication between components?

Table of contents 1. Communication between father...