--進入:
mysql -u使用者名稱 -p密碼
--退出:
\qexit
--建立使用者:
--建立:
create user 'fyn'@'%' identified by 'qwe123';
--賦予許可權:
grant all on *.* to 'fyn'@'%';
--立即生效:
flush privileges;
--查詢當前使用者:
select user();
--刪除使用者:
drop user fyn;
--建立資料庫:
create database mydb;
create database if not exists 資料庫;
--進入資料庫:
use mydb;
--檢視當前資料庫:
select database();
--檢視所有資料庫:
show databases;
--刪除資料庫:
drop database mydb;
--建立表:
create table asd(
id int,
name varchar(12)
);--刪除表:
drop table 表名;
列如:drop table asd;
--查詢表:
--查詢所有表:
show tables;
--檢視表結構:
desc 表名;
show create table 表名;
4、表單資料的增刪改查
--增、刪、改、查:
-- 插入資料:
insert [into] 表名 value(值);
insert [into] 表名(屬性,屬性) value(值1,值2);
insert [into] 表名 values(值1,值2),(值1,值2),(值1,值2);
insert [into] set id='',name='';
--列如:
insert into asd value(1,'fyn');
-- 刪除資料:
delete from 表名 where 條件;
delete from asd where id=1;
--更新(修改)資料:
update asd name='ghj' where id=1;
--查詢資料:
select * from asd;
select * from asd where id<5;--條件查詢
mysql使用者 資料庫設計 mysql 資料庫設計
資料庫設計 需求分析 1.使用者模組 用於記錄記錄註冊使用者資訊 包括屬性 使用者名稱,密碼,郵箱,身份證號,位址,姓名,暱稱 可選唯一標誌屬性 使用者名稱,身份證號 儲存特點 隨系統上線時間逐漸增加,需要永久儲存 商品模組 用於記錄記錄註冊使用者資訊 包括屬性 商品編碼,商品名稱,商品品類,重量,...
刪除使用者 資料庫 及表空間
gps平台 建設 軟體開發 系統運維,找森大網路科技!來自森大科技官方部落格 始 執行 cmd,然後輸入sqlplus as sysdba 連上資料庫 2 刪除使用者 在dos視窗輸入drop user eqm cascade 要打分號 3 刪除tablespace 在dos視窗輸入drop tab...
MySQL建立使用者 資料庫 賦權
在機器上登入mysql mysql u root p1 建立使用者 create user 使用者名稱 localhost identified by 密碼 create user 使用者名稱 identified by 密碼 2 重新整理mysql的系統許可權相關表 flush privilege...