当前位置:网站首页>MySQL syntax (basic)
MySQL syntax (basic)
2022-07-03 06:58:00 【ZzzzzzOOOOO】
MySQL grammar
Download and install MySQL
Log in to the database
mysql -uroot -p # Use root The user login mysql The server
Display all databases
show databases;
Using a database
use Database name ;
Query all data tables in the database
show tables;
View the column information in the data table
desc Data sheet ;mysql> desc person; +-------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------+------+-----+---------+----------------+ | id | int | NO | PRI | NULL | auto_increment | | name | varchar(10) | NO | | NULL | | +-------+-------------+------+-----+---------+----------------+- Create database
create database Database name ;
Delete database
drop database Database name ;Create data table
create table Data table name ( Field name , Field type );# auto_increment Defined as self increasing , Generally used for primary key , The value will automatically +1 # primary key Used to define the primary key # default charset Set the encoding format create table test(id int(10) not null auto_increment, name varchar(10) not null, age int(10) not null, primary key(id)) default charset=utf8;Delete data table
drop table Data table name ;insert data
insert into Data table name (key1, key2, key3...) values (value1, value2, value3...);insert into test(name, age) values (" Zhang San ", 18);Query data
select * from Data table name ; # Query all contents in the data table
select Column from database where Conditions limit N; # Query the contents of the specified conditions in the data table ( front N Data )# Inquire about test Everything in select * from test; # Inquire about test in id=1 Of name select name from test where id=1; # Inquire about test in age=33 Before 4 individual name select name from test where age=33 limit 4;Update data
update Data table name set column1=value1, column2=value2..where Conditions ;# to update test In the table id=1 when ,name and age Value update test set name=" Li Si ", age=28 where id=1;Delete data
delete from Data table name where Conditions ;# Delete test Everything in the table ,test The watch still exists , Content delete delete from test; # Delete test In the table name=" Li Si " The line of delete from test where name=" Li Si "like usage
select column from Data sheet where column like "%";# Inquire about test In the table x At the beginning name select name from test where name like "x%"; # Inquire about test In the table d At the end of the name select name from test where name like "%d";union usage
Connect more than two select The results of a statement are combined into a set of results
select column from table1 union select column from table2;# from person Table and test Table acquisition name Set ( Delete duplicate data ) select name from person union select name from test; # from person Table and test Table acquisition name Set ( Contains duplicate data ) select name from person union all select name from test;- alter usage
add to 、 Delete 、 Modify the columns of the table / constraint# Modify the name of the table alter table person rename to t_person; # add to age Column alter table person add age int(10); # Delete age Column alter table person drop age; # modify age Change the name to column_age alter table person change age column_age int(10); # modify age Column properties alter table person modify age int(20);
边栏推荐
- The essence of interview
- 这两种驱蚊成份对宝宝有害,有宝宝的家庭,选购驱蚊产品要注意
- Resthighlevelclient gets the mapping of an index
- Summary of the design and implementation of the weapon system similar to the paladin of vitality
- Error c2017: illegal escape sequence
- [vscode - vehicle plug-in reports an error] cannot find module 'xxx' or its corresponding type declarations Vetur(2307)
- php安装composer
- 10000小時定律不會讓你成為編程大師,但至少是個好的起點
- JMeter JSON extractor extracts two parameters at the same time
- Architecture notes
猜你喜欢

New knowledge! The virtual machine network card causes your DNS resolution to slow down

Setting up the development environment of dataworks custom function

How to migrate or replicate VMware virtual machine systems

DBNet:具有可微分二值化的实时场景文本检测

利用C#实现Pdf转图片

The list of "I'm crazy about open source" was released in the first week, with 160 developers on the list

Pytest -- write and manage test cases

Summary of remote connection of MySQL

The 10000 hour rule won't make you a master programmer, but at least it's a good starting point

VMware virtual machine C disk expansion
随机推荐
instanceof
How can I split a string at the first occurrence of “-” (minus sign) into two $vars with PHP?
[Code] occasionally take values, judge blanks, look up tables, verify, etc
JS date comparison
Integration test practice (1) theoretical basis
[open source project recommendation colugomum] this group of undergraduates open source retail industry solutions based on the domestic deep learning framework paddlepadddle
2022 East China Normal University postgraduate entrance examination machine test questions - detailed solution
Operation principle of lua on C: Foundation
mongodb
Software testing learning - day one
Ruoyi interface permission verification
In depth analysis of reentrantlock fair lock and unfair lock source code implementation
Shim and Polyfill in [concept collection]
Heap sort and priority queue
Unit test notes
【code】偶尔取值、判空、查表、验证等
(翻译)异步编程:Async/Await在ASP.NET中的介绍
Laravel Web框架
JMeter JSON extractor extracts two parameters at the same time
These two mosquito repellent ingredients are harmful to babies. Families with babies should pay attention to choosing mosquito repellent products