当前位置:网站首页>MySQL learning record (2)
MySQL learning record (2)
2022-07-02 21:29:00 【White_ Silence (Learning version)】
1. Create database
For the time being MYSQL

create database shop;
/* Create database */
show databases;
/* Show the current MYSQL Stored database */2. Create table
CREATE TABLE < Table name >
( < Name 1> < data type > < Constraints required for this column > ,
< Name 2> < data type > < Constraints required for this column > ,
.
.
.
< Constraints for this table 1> , < Constraints for this table 2> ,……);
create database shop;
use shop;
CREATE TABLE product(
product_id CHAR(4) NOT NULL,
product_name VARCHAR(100) NOT NULL,
product_type VARCHAR(32) NOT NULL,
sale_price INTEGER,
purchase_price INTEGER,
regist_date DATE,
PRIMARY KEY(product_id)
) ;The syntax is shown in the code , But if you want to create a table under the currently created database , To use use < Database name >, no need USE The complains .

Perform shortcut key sharing :ctrl+enter Execute the currently selected command line , If it is not selected, the current line will be executed
ctrl+shift+enter Execute all commands
ctrl+shift+r Run only the selected statements
3. Naming rules
- Only half width English letters can be used 、 Numbers 、 Underline (_) As a database 、 Table and column names
- The name must start with half letter
- Every field in every table ( That is, each column ) Specify the data type
3.1 Basic types of data
- INTEGER type (INT, Similar to floating point , Double precision )
Used to specify the data type of the column where integers are stored ( Digital ), Can't store decimals .
- CHAR type ( character string =string)
Used to store fixed length strings , When the length of the string stored in the column does not reach the maximum length , Use half space to complement , Because it wastes storage space , So I don't use .
- VARCHAR type ( Variable length string )
Used to store variable length strings , Fixed length string will be supplemented with half width spaces when the number of characters does not reach the maximum length , But variable length strings are different , Even if the number of characters does not reach the maximum length , I don't use half space to make up .
- DATE type ( date )
Used to specify the storage date ( Specific date ) The data type of the column of ( Date type ).
3.2 Setting of data constraints
Constraints are in addition to data types , The function of restricting or appending conditions to the data stored in a column .
NOT NULL yes Non empty constraint , That is, data must be entered in the column .
PRIMARY KEY yes Primary key constraint , Represents that the column is unique , You can get the data of a specific row through this column .
There is no need to restrict
3.3 About table deletion and update syntax
similar stata
- Delete table :drop table < Table name >; (stata :drop Field name )
- Modify table —— The main use of ALTER command
Add columns to the table :alter table < Table name > add column< Definition of columns >;
Delete column from table :alter table< Table name >drop column< Name >;
- Clear the table :truncate table table_name
alter table product add column quality INTEGER;
-- Add a column... To the table , Field called quality
alter table product drop column quality ;
-- Delete a column from the table , Field called quality
drop table product;feeling : At present, the grammar is ok , If someone used a similar language before , It should be easier to learn this .
I watched the tutorial from Alibaba cloud Tianchi , For personal notes only .
边栏推荐
- mysql
- Analysis of enterprise financial statements [4]
- Don't you want to have a face-to-face communication with cloud native and open source experts? (including benefits
- Spend more time with your computer on this special holiday, HHH
- Unexpectedly, there are such sand sculpture code comments! I laughed
- Construction and maintenance of business websites [7]
- China plastic box market trend report, technological innovation and market forecast
- I did a craniotomy experiment: talk about macromolecule coding theory and Lao Wang's fallacy from corpus callosum and frontal leukotomy
- Report on investment development and strategic recommendations of China's vibration isolator market, 2022-2027
- Go cache of go cache series
猜你喜欢

Interested parties add me for private chat

In depth research and investment feasibility report of global and Chinese isolator industry, 2022-2028

Web3js method to obtain account information and balance
![[hands on deep learning]02 softmax regression](/img/47/eb67ec2c51f6bb7d6b2879b36e769d.jpg)
[hands on deep learning]02 softmax regression

Cardinality sorting (detailed illustration)

Huawei Hongmeng watch achieves fireworks display effect on New Year's Eve

Roommate, a king of time, I took care of the C language structure memory alignment
![[shutter] statefulwidget component (image component | textfield component)](/img/4b/8e54607939989f994303ce5d922331.gif)
[shutter] statefulwidget component (image component | textfield component)
![[shutter] statefulwidget component (create statefulwidget component | materialapp component | scaffold component)](/img/04/4070d51ce8b7718db609ef2fc8bcd7.jpg)
[shutter] statefulwidget component (create statefulwidget component | materialapp component | scaffold component)
![[shutter] the shutter plug-in is used in the shutter project (shutter plug-in management platform | search shutter plug-in | install shutter plug-in | use shutter plug-in)](/img/80/215499c66243d5a4453d8e6206c012.jpg)
[shutter] the shutter plug-in is used in the shutter project (shutter plug-in management platform | search shutter plug-in | install shutter plug-in | use shutter plug-in)
随机推荐
Backpack template
AES encryption CBC mode pkcs7padding filling Base64 encoding key 32byte iv16byte
[CV] Wu Enda machine learning course notes | Chapter 12
JDBC | Chapter 3: SQL precompile and anti injection crud operation
Research Report on market supply and demand and strategy of China's plastic trunking industry
China plastic bottle market trend report, technological innovation and market forecast
Investment strategy analysis of China's electronic information manufacturing industry and forecast report on the demand outlook of the 14th five year plan 2022-2028 Edition
MySQL learning notes (Advanced)
Who do you want to open a stock account? Is it safe to open a mobile account?
Research Report on crude oil tanker industry - market status analysis and development prospect forecast
One week dynamics of dragon lizard community | 2.07-2.13
Research Report on the overall scale, major manufacturers, major regions, products and application segmentation of power management units in the global market in 2022
[shutter] shutter layout component (Introduction to layout component | row component | column component | sizedbox component | clipoval component)
Sword finger offer (I) -- handwriting singleton mode
qwb2018_ core kernel_ rop
[shutter] the shutter plug-in is used in the shutter project (shutter plug-in management platform | search shutter plug-in | install shutter plug-in | use shutter plug-in)
Construction and maintenance of business websites [6]
I would like to ask what securities dealers recommend? Is it safe to open a mobile account?
It is said that this year gold three silver four has become gold one silver two..
Share the easy-to-use fastadmin open source system - Installation