Products
Mind Mapping Software
Outlining Software
甘特图软件
Uses
Mind Maps for Education
企业思维导图
用于个人发展的思维导图
思维导图的好处
資源
特点
教育
个人和工作
台式电脑
Video Tutorials
Watch tips and tricks about using Mindomo.
Help Center
Detailed help guide on configuring and using Mindomo.
文章
甚麼是思維導圖?
How to Mind Map?
How to Take Notes with Mind Maps?
How to Prioritize Tasks with Mind Maps?
What is a Concept Map?
Top 29 Mind Map Examples
定价
登入
注册
Products
Mind Mapping Software
Outlining Software
甘特图软件
Uses
Mind Maps for Education
企业思维导图
用于个人发展的思维导图
思维导图的好处
文章
甚麼是思維導圖?
How to Mind Map?
How to Take Notes with Mind Maps?
How to Prioritize Tasks with Mind Maps?
What is a Concept Map?
Top 29 Mind Map Examples
特点
教育
个人和工作
台式电脑
說明
Video Tutorials
Help Center
定价
注册
登入
类别
全部
-
insert
-
create
-
update
-
table
作者:
leonardo contreras
7 年以前
277
sentences
開啟
更多类似内容
Español por Favor Mindomo
由frank frank
ECONOMIC SYSTEM SCHEME
由alex bermudez
THE POWER
由tecnologia lol
Design Cycle
由Daniel Flynn
sentences
Insert
Add rows of data to a table.
The general format is: INSERT INTO table_name (column_name, …) VALUES (column_value, …); or INSERT INTO table_name VALUES (column_value, …);
Create Table
The SQL CREATE TABLE command is used to create a database table and defines its data columns.
It has the following format: CREATE TABLE tablename (column_name datatype [constraint_name constraint type], …..)
Delete
Delete rows of data from a table.
The general format is: DELETE FROM tablename WHERE condition(s); e.g. DELETE FROM company WHERE company_ID = 10;
Update
To change a column value in a row or rows the UPDATE command can be used.
This has the following format UPDATE tablename SET condition WHERE condition e.g. UPDATE company SET company_name = ‘BMB’ WHERE company_ID = 10;