資料庫基本命令

2021-08-22 03:30:09 字數 615 閱讀 1863

增刪改查

* select - 從資料庫中提取資料

* update - 更新資料庫中的資料

* delete - 從資料庫中刪除資料

* insert into - 向資料庫中插入新資料

唯一性查詢:sql select

distinct

插入語句:insert

into websites (name, url, alexa, country)

修改語句:update websites

set alexa='5000', country='usa'

where name='菜鳥教程';

刪除語句:delete

from table_name

where some_column=some_value;

truncate table 命令將快速刪除資料表中的所有記錄,但保留資料表結構。這種快速刪除與 delete from 資料表的刪除全部資料表記錄不一樣,delete 命令刪除的資料將儲存在系統回滾段中,需要的時候,資料可以回滾恢復,而 truncate 命令刪除的資料是不可以恢復的。

Linux mysql資料庫基本命令

一 啟動及登入mysql 1 linux下啟動mysql的命令 mysqladmin start ect init.d mysql start 前面為mysql的安裝路徑 2 linux下重啟mysql的命令 mysqladmin restart ect init.d mysql restart 前...

資料庫的基本命令

create database databasenameon name datebasename data,資料檔案的邏輯檔名 filename 該資料檔案的儲存路徑 datebasename data.mdf size 10,檔案初始大小,單位為m maxsize 50 檔案最大值 filegro...

資料庫的基本命令

mysql資料庫修改密碼命令 mysqladmin u root p123456 password 4567890 f7檢視命令列表 使用者許可權 grant all privileges on home.to user localhost identified by 12345 指定現在在使用的資...