MySQL learning notes station B

MySQL learning notes station B DAY01 1. What is a database? What is a database management system? What is SQL? What is the relationship between them? Database: English words DataBase,abbreviation DB. A combination of files that store data in a format. As the name suggests: a warehouse for storing data is actually a pile of files. Stored i ...

Posted by jej1216 on Fri, 12 Nov 2021 06:02:16 +0100

MySQL basic usage - MysqlDay1

catalogue 1. Database foundation 2. Database and data table management 3. Simple query and data operation 4. Backup and restore database Import: - MySQL basic usage In the information society, fully and effectively managing and utilizing all kinds of information resources is the prerequisite for scientific research and decision-making m ...

Posted by colforbin05 on Fri, 12 Nov 2021 05:31:43 +0100

MySQL window function, the stranger you are most familiar with~

_Previously, I voted for fans to find the most familiar stranger in MySQL ~~Which technical points in MySQL are you familiar with and unfamiliar with? The top three ranks are not as bad as I expected, respectively: 1. Cursors2. Window Functions3. Cluster Index _Although these three points are rarely used, they are often asked in interviews ...

Posted by playaz on Thu, 11 Nov 2021 17:07:02 +0100

MySQL foundation - properties of columns

Simple queries and inserted statements Simple query statement If we want to see what data has been stored in a table, we can use the following statement: SELECT * FROM Table name; For example, we want to see the first created earlier_ The data in the table can be written as follows: mysql> SELECT * FROM first_table; Empty set (0.01 sec ...

Posted by wintallo on Thu, 11 Nov 2021 05:44:14 +0100

Implementation method of mysql master-slave replication

Prepare two machines with mysql installed (installed on different machines). If it is a machine for virtual machine replication, you need to modify the uuid in the / var/lib/mysql/auto.cnf file to ensure that the UUIDs of the two machines are differentBackup the data from the primary database to the standby database. The two databases are consi ...

Posted by Bauer418 on Wed, 10 Nov 2021 04:19:17 +0100

Mysql add delete modify query (CURD)

1, Database operation 1.1 create database Using sql statements to create Syntax: create database database name charset utf8; For example, create a database named test1 create database test1;Create using the graphical interface Navicat Select connection - right click to select "New Database", enter the database name, and click ok ...

Posted by BenInBlack on Tue, 09 Nov 2021 22:23:07 +0100

Explanation of Redis database

catalogue introduction 1, Relational database and non relational database (1) , relational database (2) , non relational database (3) , relational database and non relational database (1) Different data storage methods (2) . different expansion modes (3) Support for transactional is different (4) Background of non relational database ...

Posted by RyanSF07 on Tue, 09 Nov 2021 00:44:16 +0100

MySQL non member simple question set 2021-11-08

175. Combine two tables SELECT FirstName, LastName, City, State From Person LEFT OUTER JOIN Address ON Person.PersonId = Address.PersonId; Chapter 16 of MySQL must know and know exercises related to creating advanced connections customers table and orders table [the external chain image transfer fails. The source station may have an ...

Posted by zebrax on Mon, 08 Nov 2021 07:38:30 +0100

Lab0- C++ Primer 65f59c1475a6407e8b8adf0f1b699e05

Lab0- C++ Primer 💡 unique_ptr, matrix multiplication, gdb, etc. Code download Follow the document steps under the project: // 1. Create a new warehouse, bus private // 2. clone cmu db remote code to local git clone --bare https://github.com/cmu-db/bustub.git bustub-public cd bustub-public // 3. mirror to the remote warehouse you just ...

Posted by Plxply on Sat, 06 Nov 2021 07:40:20 +0100

The Mybatis door must go in. If you can't get in, isn't the SSM blocked?

front word : \textcolor{green} {Preface:} preface: ❤️ What is Mybais? Have you studied database? 💢 Next, let's learn what Mybatis really is. Let's enter the door first~~~ ...

Posted by upnxwood16 on Sat, 06 Nov 2021 00:26:23 +0100