The use of mysql unique key in query and related issues

The use of mysql unique key in query and related issues

1. Create table statement:

CREATE TABLE `employees` (
 `emp_no` int(11) NOT NULL,
 `birth_date` date NOT NULL,
 `first_name` varchar(14) NOT NULL,
 `last_name` varchar(16) NOT NULL,
 `gender` char(1) NOT NULL,
 `hire_date` date NOT NULL,
 PRIMARY KEY (`emp_no`),
 UNIQUE KEY `idxunique_first_name_gender` (`first_name`,`gender`),
 UNIQUE KEY `uniq_idx_firstname` (`first_name`,`gender`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

2. Add unique key:

-- Add a unique index alter table employees add constraint idxunique_first_name_gender unique(first_name, gender);

3. Query test statement:

-- Include all fields in the index, and the order is consistent with the index select * from employees where first_name='Chirstian' and gender='M';
-- key column value: idxunique_first_name_gender
-- Include all fields in the index, but the order and index are inconsistent select * from employees where gender='M' and first_name='Chirstian';
-- key column value: idxunique_first_name_gender
-- Include index on first field select * from employees where first_name='Chirstian';
-- key column value: idxunique_first_name_gender
-- Include non-first fields in the index select * from employees where gender='M';
-- key column value: NULL

4. When querying, if the where condition contains only columns (part or all) in the unique key and the column value type is const. If you want to use a unique key, the where clause must contain the first column when creating the unique key. Other columns are optional.

A question related to mysql unique key

The user_id of xxx_tab is a unique key. Let’s take a look at the pseudo code:

get user_id=10000 from xxx_tab;
if exist 
{
  return ok
}
ret = insert user_id=10000
if ret ok 
{
  return ok
}
return not_ok

Question: Why is the final result not_ok?

Tip: Distributed Impact

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Solve the problem of SQL Server saving object string conversion into uniqueidentifier failure
  • Explanation of MySQL index types Normal, Unique and Full Text
  • MySQL uses UNIQUE to implement non-duplicate data insertion
  • How to add and delete unique indexes for fields in MySQL
  • How to solve the problem of inserting duplicate values ​​into unique columns in Mysql
  • SQL statement to convert uniqueidentifier into varchar data type
  • Detailed explanation of the principles and applications of Unique SQL

<<:  Three solutions for sub-functions accessing external variables in JavaScript

>>:  Tutorial on installing and configuring Tomcat on Alibaba Cloud Server and adding external network access ports

Recommend

Master-slave synchronization configuration of Mysql database

Table of contents Mysql master-slave synchronizat...

Analyze the difference between computed and watch in Vue

Table of contents 1. Introduction to computed 1.1...

Implementing parameter jump function in Vue project

Page Description:​ Main page: name —> shisheng...

IE8 Beta 1 has two areas that require your attention

<br />Related articles: Web skills: Multiple...

Implementing file content deduplication and intersection and difference in Linux

1. Data Deduplication In daily work, there may be...

Detailed explanation of the use of $emit in Vue.js

1. Parent components can use props to pass data t...

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

Implementation of mounting NFS shared directory in Docker container

Previously, https://www.jb51.net/article/205922.h...

Example of how to set WordPress pseudo-static in Nginx

Quoting Baidu's explanation of pseudo-static:...

Summary of common docker commands (recommended)

1. Summary: In general, they can be divided into ...

A brief talk about the diff algorithm in Vue

Table of contents Overview Virtual Dom principle ...

Summary of methods for cleaning Mysql general_log

Method 1: SET GLOBAL general_log = 'OFF';...

Difference between src and href attributes

There is a difference between src and href, and t...

How to install golang under linux

Go is an open source programming language that ma...