当前位置:网站首页>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);
边栏推荐
- UTC time, GMT time, CST time
- dataworks自定义函数开发环境搭建
- Basic teaching of crawler code
- Software testing learning - day 3
- These two mosquito repellent ingredients are harmful to babies. Families with babies should pay attention to choosing mosquito repellent products
- error C2017: 非法的转义序列
- Notes on the core knowledge of Domain Driven Design DDD
- JMeter test result output
- My 2020 summary "don't love the past, indulge in moving forward"
- Inno setup production and installation package
猜你喜欢

Arctic code vault contributor

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

IC_ EDA_ All virtual machine (rich Edition): questasim, vivado, VCs, Verdi, DC, Pt, spyglass, icc2, synthesize, innovative, ic617, mmsim, process library

Yolov1 learning notes

Summary of remote connection of MySQL

Jmeter+influxdb+grafana of performance tools to create visual real-time monitoring of pressure measurement -- problem record

JMeter JSON extractor extracts two parameters at the same time

SQL implementation merges multiple rows of records into one row

熊市里的大机构压力倍增,灰度、Tether、微策略等巨鲸会不会成为'巨雷'?

Practical plug-ins in idea
随机推荐
Pytest -- write and manage test cases
Inno setup production and installation package
Getting started with pytest
MySQL installation
The difference between CONDA and pip
RestHighLevelClient获取某个索引的mapping
2022-06-23 vgmp OSPF inter domain security policy NAT policy (under update)
Journal quotidien des questions (11)
2022年华东师范大学计科考研复试机试题-详细题解
Laravel Web框架
Gridome + strapi + vercel + PM2 deployment case of [static site (3)]
Thoughts in Starbucks
Daily question brushing record (11)
2021 year end summary
Selenium - by changing the window size, the width, height and length of different models will be different
The list of "I'm crazy about open source" was released in the first week, with 160 developers on the list
On the practice of performance optimization and stability guarantee
[C /vb.net] convert PDF to svg/image, svg/image to PDF
Inno Setup 制作安装包
Use the jvisualvm tool ----- tocmat to start JMX monitoring