Detailed explanation of MySQL basic operations (Part 2)

Detailed explanation of MySQL basic operations (Part 2)

Preface

This article contains

1. Several major constraints of the database
2. Relationship between tables

constraint:

Primary key constraint:

Function: To ensure the validity and integrity of data, commonly used constraints in MySQL: primary key constraint (primary key) unique constraint (unique) non-empty constraint (not null) foreign key constraint (foreign key)
Primary key constraint: The modified field is unique and not empty. Note: A table can only have one primary key, which can contain multiple fields. Method 1: Add constraints while creating a table. Format: Field name Field type primary key
	Method 2: Add constraints in the constraint area while creating the table. After all the fields are declared, it is the constraint area. Format: primary key (field 1, field 2)
		
		create table pk01(
			id int,
			username varchar(20),
			primary key (id)
		);
		
		insert into pk01 values(1,'tom');-- Success insert into pk01 values(1,'tom');-- Failure Duplicate entry '1' for key 'PRIMARY'
		insert into pk01 values(null,'tom');-- Failed Column 'id' cannot be null
		
		create table pk01(
			id int primary key,
			username varchar(20),
			primary key (id)
		);-- Error A table can only have one primary key		
	Method 3: After creating the table, add constraints by modifying the table structure create table pk02(
			id int,
			username varchar(20)
		);
		
		alter table pk02 add primary key (field name 1, field name 2..);
		alter table pk02 add primary key(id,username);
		
		insert into pk02 values(1,'tom');-- Success insert into pk02 values(1,'tomcat');-- Success insert into pk02 values(1,'tomcat');-- Failure

Unique Constraint

The modified field is unique and does not work for null. Method 1: Add constraints while creating the table Format: Field name Field type unique
		create table un(
			id int unique,
			username varchar(20) unique
		);
		
		insert into un value(10,'tom');-- Success insert into un value(10,'jack');-- Error Duplicate entry '10' for key 'id'
		insert into un value(null,'jack');-- Success insert into un value(null,'rose');-- Success		
	Method 2: Add constraints in the constraint area while creating the table. After all the fields are declared, it is the constraint area unique(field 1, field value 2...)
	Method 3: After creating the table, add constraints by modifying the table structure alter table table name add unique (field 1, field 2); -- Added joint unique alter table table name add unique (field 1); -- Add unique to one alter table table name add unique (field 2); -- Add unique to another		
		////////////////
			create table un01(
				id int,
				username varchar(20)
			); 
			alter table un01 add unique(id,username);
			insert into un01 values(1,'tom');-- Success insert into un01 values(1,'jack');-- Success insert into un01 values(1,'tom');-- Failure Duplicate entry '1-tom' for key 'id'

Not Null Constraint

Features: The modified field is not empty. Method:
		create table nn(
			id int not null,
			username varchar(20) not null
		);
		
		insert into nn values(null,'tom');-- Error Column 'id' cannot be null

Case 1 One-to-many – Create a user table

create table user(
	id int primary key auto_increment,
	username varchar(20)
);

-- Create an order table create table orders(
	id int primary key auto_increment,
	totalprice double,
	user_id int
);

To ensure the validity and integrity of the data, add constraints (foreign key constraints).
Add a foreign key constraint on one side of the multi-table

Format:
alter table multiple table names add foreign key (foreign key name) references one table name (primary key);

For example:
alter table orders add foreign key(user_id) references user(id);

After adding foreign key constraints, the following features are available:

  1. 1. The data referenced in the slave table cannot be deleted in the master table
  2. 2. Data that does not exist in the main table cannot be added from the table

Handling one-to-many in development:
Add a foreign key in multiple tables. The name is usually the name of the main table_id, and the field type is usually consistent with the type of the primary key of the main table.
In order to ensure the validity and integrity of the data, you can add foreign key constraints to the foreign keys of multiple tables.

Case 2 One-to-many – Creating a user table

-- Create a product table create table product(
	id int primary key auto_increment,
	name varchar(20),
	price double
);

-- Create an intermediate table create table orderitem(
	oid int,
	pid int
);

– Add foreign key constraints
alter table orderitem add foreign key(oid) references orders(id);
alter table orderitem add foreign key(pid) references product(id);

Handling many-to-many in development:
Introduce an intermediate table to store the primary keys of the two tables. Generally, these two fields are set as joint primary keys, so that the many-to-many relationship can be split into two one-to-many relationships. In order to ensure the validity and integrity of the data, two foreign key constraints need to be added to the intermediate table.

Case 3-Multi-table query

Cartesian Product:

Unconditional joint query of multiple tables. It doesn't make any sense. select a.*,b.* from a,b;

Inner Join

	Format 1: Explicit inner join select a.*,b.* from a [inner] join b on ab join condition Format 2: Implicit inner join select a.*,b.* from a,b where ab join condition

Outer Join

	Left Outer Join:
	select a.*,b.* from a left [outer] join b on join condition;
	mean:
		First, display all the data in the table (a) on the left side of the join, and then query the table (b) on the right side of the join based on the conditions. If the conditions are met, display them. If not, display them as null values.
  Right Outer Join:
	select a.*,b.* from b right [outer] join a on connection condition;
	mean:
		First display all the data in the table (a) on the right side of the join, and then query the table (b) on the left side of the join based on the conditions. If the conditions are met, the data will be displayed, otherwise it will be displayed as a null value.
  Subquery:
One query depends on another query.

The above is a detailed explanation of the basic operations of MySQL 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:
  • Basic mysql operations
  • Detailed explanation of mysql basic operation statement commands
  • Basic operation tutorial of using subqueries and scalar subqueries in MySQL
  • Basic commands for MySQL database operations
  • Introduction to MySQL (I) Basic operations of data tables and databases
  • Summary of MySQL basic operation statements
  • Detailed examples of basic operations on MySQL tables
  • MySQL learning notes 2: basic database operations (create, delete, view)
  • MySQL Learning Notes 3: Introduction to basic table operations
  • Summary of basic operations for MySQL beginners

<<:  Practical example of nested routes in vue.js Router

>>:  10 ways to view compressed file contents in Linux (summary)

Recommend

jQuery implements sliding tab

This article example shares the specific code of ...

CSS3 uses transform to create a moving 2D clock

Now that we have finished the transform course, l...

React uses emotion to write CSS code

Table of contents Introduction: Installation of e...

How to use the dig/nslookup command to view DNS resolution steps

dig - DNS lookup utility When a domain name acces...

Explore how an LED can get you started with the Linux kernel

Table of contents Preface LED Trigger Start explo...

How to create and run a Django project in Ubuntu 16.04 under Python 3

Step 1: Create a Django project Open the terminal...

How to automatically backup mysql remotely under Linux

Preface: Basically, whether it is for our own use...

Several important MySQL variables

There are many MySQL variables, some of which are...

JS implements simple addition and subtraction of shopping cart effects

This article example shares the specific code of ...

Specific use of Linux man command

01. Command Overview Linux provides a rich help m...

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

Detailed explanation of Nginx rewrite jump application scenarios

Application scenario 1: Domain name-based redirec...

Detailed steps for using jib for docker deployment in Spring Cloud

Introduction to Jib Jib is a library developed by...

Native JavaScript to implement random roll call table

This article example shares the specific code of ...