登入mysql -u root -p
檢視所有的資料庫show databases;
建立乙個資料庫create database 資料庫名;
刪除乙個資料庫drop database 資料庫名;
選擇要操作的sql資料庫use 資料庫名;
檢索單個列輸入select pro_name
from products;
檢索多個列輸入select prod_id,prod_name,prod_price
from products;
檢索多個列輸入select * (』*'是乙個萬用字元)
from products;
檢索不同的值輸入select distinct vend_id
from products;
限制結果輸入select prod_name
from products
limit 5;(不超過5行)
limit 5 offset 6;(返回從第5行起的6行資料)
使用where子句輸入select prod_name,prod_price
from products
where prod_price=3.49;
只返回prod_price值為3.49的行
檢查單個值輸入select prod_name,prod_price
from products
where prod_price <10;
不匹配檢查輸入select vend_id,prod_name
from products
where vend_id <> 『dll01』;
範圍值檢查輸入select prod_name,prod_price
from products
where prod_price between 5 and 10;
空值查詢輸入select prod_name
from products
where prod_price is null;
插入完整或者部分行輸入insert into customers
values(『1000006』,『brand』,『new york』,『usa』);
輸入insert into customers(cust_id,cust_name,cust_address,cust_city)
values(『1000006』,『brown』,『new york』,『usa』);
插入檢索出的資料輸入insert into customers(cust_id,cust_name,cust_address,cust_city)
select cust_id,cust_name,cust_address,cust_city
from custnew;
從乙個表複製到另乙個表輸入(select *
into custcopy
from customers;)
create table custcopy as
select * from customers;
更新資料輸入update customers
set cust_email=『[email protected]』,
cust_contact=『sam roberts』
where cust_id=『1000005』;
刪除資料輸入delete from customers
where cust_id=『100006』;
簡單的mysql常用命令總結
啟動mysql net start mysql 停止mysql net stop mysql 登陸 mysql u root p 二 常用命令 1 顯示當前資料庫伺服器中的資料庫列表 mysql show databases 2 建立資料庫 mysql create database 庫名 3 建立...
MySQL命令總結
安裝 sudo apt get install mysql server 服務啟動服務 sudo service mysql start 停止服務 sudo service mysql stop 重啟服務 sudo service msyql restart 配置配置檔案目錄為 etc mysql ...
MySQL命令總結
mysql 這是乙個關係型資料庫,存在表的概念 結構 資料庫可以存放多少張表,每張表可以存放多少字段,每個字段可以存放多少記錄 dos命令運算元據庫 phpstudy使用終端開啟資料庫 其他選項 mysql工具 快捷建立資料庫 對資料庫進行增刪查改 分號,是資料庫的結束標誌 show databas...