mysql基礎語法

2021-09-27 09:59:41 字數 782 閱讀 1244

在當今的網際網路企業中,最常用的資料庫模式主要有兩種,即關係型資料庫和非關係型資料庫。

在兩種資料庫中,關係型資料庫仍然佔據主流。然後在這些關係型資料庫中,mysql以他所存在的下列優勢成為了廣大開發者的優先選擇。

建立資料庫

create database 資料庫名

刪除資料庫: drop database 庫名

建立資料表

語法: create table 表名 (欄位名 varchar(20), 欄位名 char(1))

刪除資料表: drop table 表名

新增資料

往表中插入記錄:

語法: insert into 表名 values (「欄位一對應值」,「欄位二對應值」,…)

另一種新增資料的語法

insert into table_name ( field1, field2,…fieldn ) values( value1, value2,…valuen )

清空表資料語法

delete from 表名

查詢資料

select column_name,column_name

from table_name

[where clause][limit n][ offset m]

修改資料

語法:update 表名

set 欄位名1=值1,[ ,欄位名2=值2,…]

[ where 條件表示式 ]

刪除資料

命令:delete from student

where id=7

mysql基礎語法演示 mysql基礎語法

1 ddl 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...

mysql 語法入門 mysql基礎語法

1 dml 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...

mysql基礎語法

連線伺服器 mysql h host u user p 連線伺服器 建立資料庫 show databases 顯示當前伺服器上有什麼伺服器 use databasename 選擇資料庫 create database databasename 建立資料庫 建立表 show tables 顯示當前伺服...