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:
|
<<: Three solutions for sub-functions accessing external variables in JavaScript
Table of contents Mysql master-slave synchronizat...
Table of contents 1. Introduction to computed 1.1...
Page Description: Main page: name —> shisheng...
<br />Related articles: Web skills: Multiple...
1. Data Deduplication In daily work, there may be...
1. Parent components can use props to pass data t...
Table of contents UNION Table initialization Exec...
Previously, https://www.jb51.net/article/205922.h...
Quoting Baidu's explanation of pseudo-static:...
1. Summary: In general, they can be divided into ...
Table of contents Overview Virtual Dom principle ...
Method 1: SET GLOBAL general_log = 'OFF';...
There is a difference between src and href, and t...
Go is an open source programming language that ma...
<div id="root"> <h2>Keep go...