当前位置:网站首页>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);
边栏推荐
- Resttemplate configuration use
- What are the characteristics and functions of the scientific thinking mode of mechanical view and system view
- Ruoyi interface permission verification
- Summary of the design and implementation of the weapon system similar to the paladin of vitality
- Software testing assignment - day 3
- Centos切换安装mysql5.7和mysql8.0
- EasyExcel
- File links cannot be opened or downloaded in Google browser
- vmware虚拟机C盘扩容
- Heap sort and priority queue
猜你喜欢
![Gridome + strapi + vercel + PM2 deployment case of [static site (3)]](/img/65/8d79998e96a2c74ba6e237bee652c6.jpg)
Gridome + strapi + vercel + PM2 deployment case of [static site (3)]

Win 10 find the port and close the port

2022-06-23 vgmp OSPF inter domain security policy NAT policy (under update)

How to specify the execution order for multiple global exception handling classes

My 2020 summary "don't love the past, indulge in moving forward"

Software testing learning - the next day

Jenkins

100000 bonus is divided up. Come and meet the "sister who braves the wind and waves" among the winners

Setting up the development environment of dataworks custom function

Daily question brushing record (11)
随机推荐
[Fiddler actual operation] how to use Fiddler to capture packets on Apple Mobile Phones
golang操作redis:写入、读取kv数据
Understand software testing
Troubleshooting of high CPU load but low CPU usage
Condition annotation in uni-app realizes cross segment compatibility, navigation jump and parameter transfer, component creation and use, and life cycle function
Yolov2 learning and summary
Summary of remote connection of MySQL
[untitled] 5 self use history
Stream stream
保险公司怎么查高血压?
The essence of interview
PHP install composer
php artisan
2022 East China Normal University postgraduate entrance examination machine test questions - detailed solution
How does the insurance company check hypertension?
How to plan well?
Machine learning | simple but feature standardization methods that can improve the effect of the model (comparison and analysis of robustscaler, minmaxscaler, standardscaler)
Win 10 find the port and close the port
In depth analysis of reentrantlock fair lock and unfair lock source code implementation
DNS forward query: