当前位置:网站首页>MySQL's most basic select statement
MySQL's most basic select statement
2022-07-07 01:44:00 【Hu Yangyang y】
1. Basic statement
(1) View all databases
show databases;
(2) Create your own database
create database Database name
(3) Use your own database
use Database name
(4) View all tables in a library
show tables from Database name
(5) Create a new table
create table The name of the table ( Field name data type ,
Field name data type );
explain : If it is the last field , Then add a comma , Because the comma is used to separate each field .
(6) View the data of a table
select * from Database table name ;
(7) Add a record
insert into The name of the table values( List of values );
(8) View the table creation information
show tables;
(9) View database creation information
show create database Database name \G
(10) Delete table
drop table The name of the table ;
(11) Delete database
drop database Database name
(12) Import an existing data table , The data table
One .source The full pathname of the file
explain : Can only be used at the command prompt
Two . Tools based on specific graphical interfaces can import data
explain : I'm using SQLyog,Windows The system is case insensitive
however SQLyog Keyword functions in are capitalized , So the following statements will be capitalized
2. The most basic SELECT sentence
(1)SELECT Field 1, Field 2,.....FROM Table name ;
dual: false ( false ) surface *: All fields in the table ( Or column )
(2) Full name of the column
as: Full name (alias( Alias )), It can be omitted
Column aliases can use a pair of " " Lead up , Do not use ' '
(3) Remove duplicate lines
SELECT DISTINCT Field FROM Table name ;
(4) Null values participate in the operation
Null value :null
null Not equal to 0,' ','null'
Null values participate in the operation : The result must also be empty
Solutions to practical problems : introduce IFNULL
(5) mark of emphasis
SELECT * EROM 'order';// Same name as keyword
(6) Query constant
Columns such as :SELECT 'huyangyang',123,emplovee_id,last_name
FROM employees;
(7) Display table structure
DESCRIBE Table name ;
Shows the details of the fields in the table
or DESC
(8) Filtering data
SELECT * FROM Table name WHERE Field = 'huyangyang';
The query field is 'huyangyang' Employee information
边栏推荐
- Basic introduction and use of dvajs
- JS Es5 can also create constants?
- Curl command
- 黑马笔记---异常处理
- curl 命令
- Appium automation test foundation uiautomatorviewer positioning tool
- Machine learning: the difference between random gradient descent (SGD) and gradient descent (GD) and code implementation.
- AcWing 1142. Busy urban problem solving (minimum spanning tree)
- THREE. AxesHelper is not a constructor
- 新工作感悟~辞旧迎新~
猜你喜欢

Box stretch and pull (left-right mode)

AcWing 345. 牛站 题解(floyd的性质、倍增)

Appium foundation - appium inspector positioning tool (I)

AcWing 361. Sightseeing cow problem solution (SPFA seeking positive ring)

shell脚本快速统计项目代码行数

C语言关于链表的代码看不懂?一篇文章让你拿捏二级指针并深入理解函数参数列表中传参的多种形式

The difference between Tansig and logsig. Why does BP like to use Tansig

Instructions for using the domain analysis tool bloodhound

Make Jar, Not War

今日问题-2022/7/4 lambda体中修改String引用类型变量
随机推荐
AcWing 345. Cattle station solution (nature and multiplication of Floyd)
WCF基金会
Transplant DAC chip mcp4725 to nuc980
JS es5 peut également créer des constantes?
Yunna - work order management system and process, work order management specification
Machine learning: the difference between random gradient descent (SGD) and gradient descent (GD) and code implementation.
JS ES5也可以创建常量?
Typical problems of subnet division and super network construction
Right mouse button customization
字符串的相关编程题
grep查找进程时,忽略grep进程本身
糊涂工具类(hutool)post请求设置body参数为json数据
机器学习:随机梯度下降(SGD)与梯度下降(GD)的区别与代码实现。
C语言实例_4
C语言【23道】经典面试题【下】
Today's question -2022/7/4 modify string reference type variables in lambda body
Make Jar, Not War
设置Wordpress伪静态连接(无宝塔)
Baidu flying general BMN timing action positioning framework | data preparation and training guide (Part 2)
使用nodejs完成判断哪些项目打包+发版