Preface MySQL is the most popular relational database management system. In terms of WEB applications, MySQL is one of the best RDBMS (Relational Database Management System) application software. MySQL is a relational database management system developed by the Swedish company MySQL AB and currently owned by Oracle. MySQL is a relational database management system that stores data in different tables instead of putting all data in one large warehouse, which increases speed and flexibility. Query data In the MySQL database, the select statement is used to query data. The syntax is:
Using select query has the following characteristics:
For example: SELECT name,age,class,id FROM classroom; Example: ①Query constants SELECT 100; Query results: ②Query expression SELECT 100+6; Query results: ③Query fields Query a single field SELECT last_name FROM employees; Query results: Query multiple fields SELECT salary,last_name,first_name FROM employees; Query results: Query all fields SELECT * FROM employees; Query results: ④Query function Commonly used query functions are: SELECT DATABASE();#Query the currently called databaseSELECT VERSION();#Query the database versionSELECT USER();#Query the current user SummarizeThe basic query statements in the MySQL database are the most commonly used and basic statements when using the database. Proficiency in this part of the content also lays the foundation for learning other content of the MySQL database. You may also be interested in:
|
<<: Usage scenarios and source code analysis of Vue advanced components functional components
Official documentation: https://nginx.org/en/linu...
Use the mysql command to connect to the MySQL ser...
Comments and messages were originally a great way...
Detailed description of media device type usage: ...
Preface As we all know, "How to vertically c...
Wired network: Ethernet Wireless network: 4G, wif...
I saw that Taobao’s webpage uses import, while man...
I encountered this problem when I was making the ...
When using jquery-multiselect (a control that tra...
0. Preliminary preparation Disable secure boot in...
Let me show you the effect picture first. Persona...
1. Object-oriented class inheritance In the above...
React tsx generates a random verification code fo...
In the process of web project development, we oft...
Table of contents 1. Introduction to teleport 1.1...