当前位置:网站首页>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
边栏推荐
- Dark horse notes - create immutable sets and streams
- Telnet,SSH1,SSH2,Telnet/SSL,Rlogin,Serial,TAPI,RAW
- Start from the bottom structure to learn the customization and testing of fpga---- FIFO IP
- C language instance_ four
- Make Jar, Not War
- AcWing 1141. 局域网 题解(kruskalkruskal 求最小生成树)
- 对C语言数组的再认识
- C语言实例_2
- AcWing 346. 走廊泼水节 题解(推公式、最小生成树)
- Right mouse button customization
猜你喜欢
AI 从代码中自动生成注释文档
对C语言数组的再认识
Typical problems of subnet division and super network construction
js如何快速创建一个长度为 n 的数组
Yunna | work order management measures, how to carry out work order management
[advanced C language] 8 written questions of pointer
LeetCode:1175. Prime permutation
Today's question -2022/7/4 modify string reference type variables in lambda body
C语言关于链表的代码看不懂?一篇文章让你拿捏二级指针并深入理解函数参数列表中传参的多种形式
1123. 最深叶节点的最近公共祖先
随机推荐
子网划分、构造超网 典型题
AcWing 361. 观光奶牛 题解(spfa求正环)
百度飞将BMN时序动作定位框架 | 数据准备与训练指南 (上)
永久的摇篮
Yunna | work order management measures, how to carry out work order management
mysqlbackup 还原特定的表
Gin introduction practice
Comparison of picture beds of free white whoring
Taro2.* applet configuration sharing wechat circle of friends
C语言实例_2
POJ 3177 Redundant Paths POJ 3352 Road Construction(双连接)
C language instance_ two
New job insights ~ leave the old and welcome the new~
Baidu flying general BMN timing action positioning framework | data preparation and training guide (Part 2)
AcWing 1148. 秘密的牛奶运输 题解(最小生成树)
Share a general compilation method of so dynamic library
MySQL最基本的SELECT(查询)语句
剑指 Offer II 035. 最小时间差-快速排序加数据转换
WCF基金会
AcWing 361. Sightseeing cow problem solution (SPFA seeking positive ring)