Data Types and Operations Data Table 1.1 MySQL type: integer 1.2 MySQL data type: floating point type 1.3 Date and time type DATE 1 Support period: January 1, 1000 ~ December 31, 9999 1.4 Character Type CHAR: fixed length, if the length is less than the specified length, add spaces at the end. Four data types: Integer: TINYINT SMALLINT MEDIUMINT BIGINT Floating point type: FLOAT or DOUBLE[(M,D)] M is the total number of digits and D is the number of digits after the decimal point Date and time type: less used, mostly stored in the form of timestamp Character type char(5) 5-byte char type 1.5 Create a data table The data table (or table) is one of the most important components of the database and the basis of other objects. Show all databases: show databases Open the database to be executed use database library name Show an open database: Set select database CREATE TABLE tb1( username VARCHAR(20), age TINYINT UNSIGNED, salary FLOAT(8,2) UNSIGNED ); //Created a tb1 table containing user name, age, and salary. 1.6 View Data Table SHOW TABLES [FROM db_name] [LIKE 'pattern' | WHERE expr] 1.7 View the data table structure SHOW COLUMNS FROM tbl_name 1.8 Inserting and searching MySQL records Insert Record INSERT [INTO] tblname [(colname,...)] VALUES(val,..) insert into tb1 values('jack',18,6000.00); Record search SELECT expr,... FROM tbl_name; select * from tb1; 1.9 MySQL null and non-null values NULL, the field value can be empty 1.10 Automatic numbering AUTO_INCREMENT Automatic numbering, and must be used in combination with the primary key. By default, the starting value is 1, and the increment is 1 each time; 1.11 Introduction to primary key constraints: PRIMARY KEY Primary key constraint Each data table can only have one primary key. The primary key ensures the uniqueness of the record. The primary key is automatically NOT NULL. 1.12 Introduction to unique constraints UNIQUE KEY Unique Constraint The unique constraint can ensure the uniqueness of the record The unique constraint field can have a null value (NULL) Each data table can have multiple unique constraints create table tb5( id smallint unsigned auto_increment primary key, username VARCHAR(20) NOT NULL UNIQUE KEY, age tinyint UNSIGNED ); 1.13 Default Constraints DEFAULT Default value When inserting a record, if no value is explicitly assigned to the field, a default value is automatically assigned. create table tb6( id smallint unsigned auto_increment primary key, username varchar(20) not null unique key, sex enum('1','2','3') default '3' ); Summarize This is the end of this article about the data types and operation data tables you need to know about MYSQL. For more relevant MYSQL data types and operation data table content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the loop form item example in Vue
>>: In-depth analysis of Nginx virtual host
<br />Related articles: 9 practical tips for...
I encountered several browser compatibility issue...
How to set up a MySQL short link 1. Check the mys...
Preface Semicolons in JavaScript are optional, an...
Table of contents Project Directory Dockerfile Fi...
Table of contents What is JSONP JSONP Principle J...
1. Merge the margins of sibling elements The effe...
1. Tomcat service is not open Enter localhost:808...
This article example shares the specific code of ...
Table of contents Preface 1. EndPoint 2. Connecti...
Table of contents Understand the core concept of ...
a and href attributes HTML uses <a> to repr...
Preface In many management and office systems, tr...
Table of contents Preface 1. MySQL main storage e...
First download the latest MySQL 5.7.17 Community ...