当前位置:网站首页>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
边栏推荐
- swiper组件中使用video导致全屏错位
- WCF基金会
- Machine learning: the difference between random gradient descent (SGD) and gradient descent (GD) and code implementation.
- IDEA常用的快捷键
- 454-百度面经1
- LeetCode:1175. Prime permutation
- Mongodb checks whether the table is imported successfully
- JS es5 peut également créer des constantes?
- 初识MySQL
- ZOJ problem set – 2563 long dominoes [e.g. pressure DP]
猜你喜欢

爬虫实战(六):爬笔趣阁小说

Transplant DAC chip mcp4725 to nuc980

LeetCode. 剑指offer 62. 圆圈中最后剩下的数

域分析工具BloodHound的使用说明

AcWing 1148. 秘密的牛奶运输 题解(最小生成树)

从底层结构开始学习FPGA----FIFO IP的定制与测试

Make Jar, Not War

黑马笔记---异常处理

Start from the bottom structure to learn the customization and testing of fpga---- FIFO IP

According to the analysis of the Internet industry in 2022, how to choose a suitable position?
随机推荐
AcWing 345. 牛站 题解(floyd的性质、倍增)
Reptile practice (VI): novel of climbing pen interesting Pavilion
405 method not allowed appears when the third party jumps to the website
Long press the button to execute the function
C语言关于链表的代码看不懂?一篇文章让你拿捏二级指针并深入理解函数参数列表中传参的多种形式
Yunna | work order management software, work order management software app
JVM 内存模型
AI automatically generates annotation documents from code
交叉验证如何防止过拟合
Let's see how to realize BP neural network in Matlab toolbox
Google released a security update to fix 0 days that have been used in chrome
Telnet,SSH1,SSH2,Telnet/SSL,Rlogin,Serial,TAPI,RAW
Appium foundation - appium inspector positioning tool (I)
ZOJ Problem Set – 2563 Long Dominoes 【如压力dp】
编译命令行终端 swift
THREE. AxesHelper is not a constructor
swiper组件中使用video导致全屏错位
LeetCode:1175. Prime permutation
Taro2.* applet configuration sharing wechat circle of friends
Machine learning: the difference between random gradient descent (SGD) and gradient descent (GD) and code implementation.