当前位置:网站首页>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);
边栏推荐
- 【code】偶尔取值、判空、查表、验证等
- Application scenarios of Catalan number
- Architecture notes
- PHP install composer
- IC_EDA_ALL虚拟机(丰富版):questasim、vivado、vcs、verdi、dc、pt、spyglass、icc2、synplify、INCISIVE、IC617、MMSIM、工艺库
- Search engine Bing Bing advanced search skills
- Unit test notes
- Upgrade CentOS php7.2.24 to php7.3
- The essence of interview
- Yolov1 learning notes
猜你喜欢
Yolov3 learning notes
Software testing assignment - day 1
Application scenarios of Catalan number
10000小時定律不會讓你成為編程大師,但至少是個好的起點
[open source project recommendation colugomum] this group of undergraduates open source retail industry solutions based on the domestic deep learning framework paddlepadddle
POI excel percentage
In depth analysis of reentrantlock fair lock and unfair lock source code implementation
HMS core helps baby bus show high-quality children's digital content to global developers
Machine learning | simple but feature standardization methods that can improve the effect of the model (comparison and analysis of robustscaler, minmaxscaler, standardscaler)
2022-06-23 VGMP-OSPF-域间安全策略-NAT策略(更新中)
随机推荐
Laravel frame step pit (I)
Software testing assignment - day 1
Climb movie paradise 2021 hot
Golang operation redis: write and read kV data
Crontab scheduled task
Heap sort and priority queue
[untitled]
Centos切换安装mysql5.7和mysql8.0
Create your own deep learning environment with CONDA
CentOS php7.3 installing redis extensions
Software testing learning - day one
golang操作redis:写入、读取hash类型数据
[LeetCode]404. Sum of left leaves
Getting started with pytest
如何迁移或复制VMware虚拟机系统
Stream stream
Interface learning
Daily question brushing record (11)
机械观和系统观的科学思维方式各有什么特点和作用
Yolov3 learning notes