In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly introduces the basic knowledge of MYSQL, which has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, let the editor take you to understand it.
1. Basic concepts and basic commands 1) basic concepts
① database
A warehouse that stores and manages data according to a certain data structure.
Classification of ② Database
The common classification of database is to divide the database into relational database and non-relational database.
③ what is a relational database?
The complex relationship is expressed in a simple binary form, that is, in the form of rows and columns (table form), where each row is called a record and the column is called a field. Among them, MySQL is a very commonly used relational database.
Binary form: similar to excel tabular data, it is a binary form.
④ database management system: DBMS
Database management system is a software used to manage and operate database. Among them, the relational database management system (RDBMS) includes Oracle, MySQL, SQL Server, DB2, IBM and so on. Non-relational database management systems (Nosql) include redis, Hbase, mongodb, neo4j and so on.
Introduction to ⑤ MySQL
MySQL is a relational database management system. The product was originally designed by mysql ab and later acquired by Oracle Database. The MySQL database uses the form of "sub-database and sub-table" to manage the data. A MySQL database management system can manage multiple databases; multiple tables can be stored in one database. At the same time, MySQL is open source free, supports tens of millions of levels of data query, and supports GPL (open source license).
⑥ what is the SQL language?
SQL language, the full name is "structured query language", called structured query language, is a standardized language for operating the database, and can realize the operation of accessing the database.
⑦ pay attention to the difference between MySQL and SQL!
There is a wrong saying: can you MySQL? In fact, this statement is problematic. MySQL refers to the database management system, asking if you can MySQL, but actually asking whether you will add, delete, change, and check the database, so this MySQL is talking about the "SQL language" mentioned earlier, but we habitually use MySQL instead of SQL.
Classification of ⑧ SQL language
⑨, what is a "watch"?
A table is a structured list of a particular type of data.
The "specific type" here refers to the data stored in the table, which is a type of data. You cannot soften the list of customer information and the list of orders together and store them in the same database table. It becomes difficult to retrieve and access the data in the future, so we should have a list and a table.
Each database should have a table name that uniquely identifies itself. You cannot have two tables with the same table name in the same database, but the same table name can be used in different databases.
What is "column" in ⑩?
A table consists of columns, each of which stores information about a part of the table. Each column is a field in the table. A table consists of one or more columns.
It is important to note that each column in the table should store a specific piece of information. For example, provinces, cities, and postal codes should all be separate columns. We can't combine these three different pieces of information into one column, otherwise it will add a lot of trouble to the query.
What is a "data type" in ⑪?
Each column in the table should have a corresponding data type, which indicates what data the column can store.
The commonly used data types are string type, numeric type, date type. A detailed description of the data types will be given in a later series of articles.
Data types play an important role in helping to sort data correctly and play an important role in optimizing disk usage.
What is "OK" in ⑫?
The data in the table is stored in rows, and each row represents a record. If you think of a table as a grid, the vertical columns in the grid behave the table rows horizontally.
2) basic command
① connects to the database
MySQL database is a "client-server" type of database management system. Vividly speaking, a MySQL database management system has at least two parts, one is the server side, which we can not see, but every time we use the database, we always get data from it. The second is the client, I often use the client has CMD window, Navicat, these clients can let us enter SQL statements for data access and access. Therefore, we need to log in to the database management system before executing the command.
"login to MySQL database requires the following information" hostname port username user password (password) mysql-h localhost-u root-P 3306Murp 123Murh hostname: localhost indicates that the server is local-u user name: username root-P port: default port 3306Muip password: password 123mm
In the CMD black window, if you log in to the MySQL database, the interface is as follows:
② Select Database
When you first connect to the database, no database is open for you to use. Before you can perform operations on any database, you need to select a database.
Basic syntax: use database name; use huangwei; "Note: in the CMD black window, each line of code must be followed by a"; "semicolon. But in many software to use SQL statements, but do not need to take"; "semicolon, sometimes with"; "semicolon can also make mistakes."
③ understands databases and tables
Show databases: returns a list of available databases
Show tables: returns a list of database tables
Show columns from table name: returns the specific information of a table, which is equivalent to "desc+ table name"
2. The writing order and execution order of SQL statements
If you want to learn SQL sentences well, you must first understand the writing order and execution order of SQL statements. The inconsistency between the writing order and the execution order of SQL statements is an important reason for the miswriting and inability of SQL. In view of this, in the process of learning SQL sentences, you should have a good understanding of the concepts of "writing order" and "execution order".
1) the writing order of a complete SQL query statement-- "mysql statement writing order" 1 select distinct * 2 from table (or result set) 3 where … 4 group by... Having... 5 order by... 6 limit start,length-- Note: 1 and 2 belong to the most basic sentences and must contain. Note: 1 and 2 can be collocated with any of 3, 4, 5, 6, or with more than 3, 4, 5, 6 at the same time. 2) A complete execution order of SQL statements
The explanation of the above figure is as follows:
3) explanation about who comes before and who comes after in the execution order of select and having
Note: if anyone has anything to convince me, please leave a message and let me know. Thank you.
Thank you for reading this article carefully. I hope the article "what is the basic knowledge in MYSQL" shared by the editor will be helpful to you. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.