mysql學習之五 sql語句學習3

2021-06-21 21:45:42 字數 776 閱讀 4064

好吧,大家覺得這種字型還是比較好看,所有我們就換這種字型了。

insert into 語句用於向**中插入新的行。

語法

insert into 表名稱 values (值1, 值2,....)
我們也可以指定所要插入資料的列:

insert into table_name (列1, 列2,...) values (值1, 值2,....)
update 語句用於修改表中的資料。

語法:

update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值
delete 語句用於刪除表中的行。

語法

delete from 表名稱 where 列名稱 = 值
刪除某行

"fred wilson" 會被刪除:

delete from person where lastname = 'wilson'
刪除所有行

可以在不刪除表的情況下刪除所有的行。這意味著表的結構、屬性和索引都是完整的:

delete from table_name或者:delete * from table_name

MySQL學習之SQL語句(二)

一 sql簡介 sql 結構化查詢語言 structured query language 是一種資料庫查詢和程式語言,用於訪問資料以及查詢 更新和管理關係資料庫系統。二 sql分類 1 資料定義語言 簡稱ddl data definition language 用來定義資料庫物件。關鍵字 crea...

mysql學習之六 sql語句學習4

where 子句 如需有條件地從表中選取資料,可將 where 子句新增到 select 語句。語法select 列名稱 from 表名稱 where 列 運算子 值如果只希望選取居住在城市 beijing 中的人,我們需要向 select 語句新增 where 子句 select from per...

mysql學習之四 sql語句學習2

建立資料庫 create database stefan 刪除資料庫 drop database stefan 重新命名資料庫 重新命名資料庫沒有直接的辦法。已經不再使用的方法 rename database stefan to lcdb 建立 語法 create table 表名稱 列名稱1 資料...