MySQL
It is recommended to use the installation package. After installation, modify the mysql configuration file my.ini to change the character set to utf8 show database show databases; If the database mysql9_17 delete mysql9 if it already exists_ seventeen drop database if exists mysql9_17; Create dUTF-8...
Posted by spidie on Mon, 20 Sep 2021 10:30:20 +0530
catalogue 1, System introduction 1. Development environment 2. Technical selection 3. System functions 4. Database 5. Project screenshot 2, System display 1. Registration system 2. Log in to the system 3. User welcome interface 4. Users - Movie ranking 5. User - ticket purchase information 6. UUTF-8...
Posted by pelleas1022 on Tue, 21 Sep 2021 17:06:51 +0530
1. Introduction to MySql transactions Four characteristics of a transaction (ACID): atomicity, consistency, isolation, persistence? Atomicity Transactions are the smallest unit of execution and do not allow splitting; all operations contained in a transaction are either fully successful or all UTF-8...
Posted by Joe on Tue, 21 Sep 2021 22:15:58 +0530
1, Database Constraints Constraint type: NOT NULL: indicates that a column cannot store NULL values (required) UNIQUE: ensure that each row of a column must have a UNIQUE value (it cannot be repeated with other records. If it is repeated, an error will be reported!) DEFAULT: Specifies the DEFAUUTF-8...
Posted by alemapo on Wed, 22 Sep 2021 07:55:48 +0530
1. Learning content DataWhale SQL team learning Addition and subtraction of Table 2 What is set operation? A set represents "the sum of all kinds of things" in the field of mathematics and a set of records in the field of database. Specifically, the execution results of tables, views and queriUTF-8...
Posted by ChroniX88 on Wed, 22 Sep 2021 19:15:26 +0530
1. Set operation Use a Venn's diagram to illustrate what set operation is. 1.1 intersection union give an example: SELECT product_id, product_name FROM Product UNION SELECT product_id, product_name FROM Product2; 1.1.1 union equivalent conversion The results under different conditions of the saUTF-8...
Posted by shibiny on Wed, 22 Sep 2021 19:25:10 +0530
For table building statements, see the article: SQL Exercise 1 - Famous Language SQL Exercise The data is as follows: What are the top 10 tags? The SQL implementation is written as follows: select tmp.tag,count(tag) amount from ( select q.id ,q.tags,ht.help_topic_id, substring_index( substring_UTF-8...
Posted by trex005 on Wed, 22 Sep 2021 22:35:05 +0530
In September, datawhale formed a team to learn task04 set operation 1, Addition and subtraction of tables 1. What is set operation The execution results of tables, views and queries learned earlier are collections The element is the record, which is each row of the table or query result Set opeUTF-8...
Posted by mcirl2 on Wed, 22 Sep 2021 22:40:36 +0530
preface There are several ways to realize the paging of the mybatis framework. The simplest is to use the native sql keyword limit. The other is to use the interceptor to splice sql to achieve the same functions as limit. The other is to use the PageHelper. Here, take MySQL as an example to exUTF-8...
Posted by s-mack on Thu, 23 Sep 2021 18:43:13 +0530
1. Introduction to JDBC Java database connectivity, Java database connection, Java language operation database The essence of Jdbc: In fact, it is a set of rules defined by the official (sun company) to operate all relational databases, that is, interfaces. Various data The library manufacturerUTF-8...
Posted by explorer on Fri, 24 Sep 2021 04:55:17 +0530