Mysql 資料庫建立基本步驟

2021-08-02 03:32:13 字數 1035 閱讀 4428

1.建立資料庫

create database school;

2.使用資料庫

use school;

3.建立使用者  

create user jame@localhost identified by 'jame';

4.授權使用者(注意這裡是用了*哦,自己將school也替換成*號)

grant select,update,insert,create on school.* to jame@localhost identified by 'j ame';

5.取消授權(現在明白為啥直接敲privilege 沒用了吧?)

revoke select,update,insert,create on school.* from jame@localhost;

6.建立表

create table students(s_name varchar(10) not null,age int(3),*** char(1),heig ht int,s_no varchar(20) not null,primary key(s_no));

7.修改表名

alter table students rename to student;

8.修改列

alter table students change s_name name varchar(20) not null;

9.增加列

alter table student add class varchar(20);

10.刪除列

alter table student drop column class;

11.刪除表

drop table student;

12.刪除使用者

drop user jame;

13.刪除資料庫

drop database school;

檢視資料庫的表結構方法 desc students; 或者 describe students; 另:mysql使用者進入控制台後無法切換使用者,只能先退出終端,再重新連線。

手動建立資料庫步驟

兩種方式建立資料庫 一.使用dbca工具建立 dbca有兩種執行模式,一種是圖形化介面 互動模式 一種是命令介面 靜默安裝 dbca命令列模式安裝 例 dbca silent createdatabase templatename general purpose.dbc gdbname ora11g...

資料庫建立的步驟

執行商品資訊的增 刪 改的操作 一 匯入配置檔案和函式庫檔案 require dbconfig.php require functions.php 二 連線mysql,選擇資料庫 link mysql connect host,user,pass or die 資料庫失敗!mysql select ...

刪除mysql資料庫步驟

一.停止mysql服務 二.進入控制面板,選擇mysql程式解除安裝 三.進入mysql安裝目錄,將mysql目錄直接刪除 四.刪除登錄檔 cmd regist.exe 選擇 heky local machine system currentcontrolset service的mysql連資料夾一...