MySQL基本用法

2021-08-19 14:08:07 字數 1000 閱讀 4093

mysql基本操作(注意全英文)

啟動:開始-->mysql command line client

(使用者名稱:root,密碼:   )

顯示資料庫:show database;

使用資料庫:use 庫名;(use mysql;)

顯示資料庫表:show tables;

顯示表結構:describe 表名;

如:describe time_zone;

新增記錄:insert into 表名 values(各字段值);

如:insert into tescher values(001,'wustzz','hbut','1975-03-03');

查詢記錄:select 字段 from 表名 where 條件;

如:select * from teacher;(全部查)

select name from teacher where id=001;

刪除記錄:delete from 表名 where 條件;

如:delete from teacher;(全部刪)

delete from teacher where id=002;

更新記錄:update 表名 set 欄位名=值 where 條件;

如:update teacher set address='wust' where id=002;

建立資料庫:create database 庫名;

如:create database school;

在資料庫中建立表:create table 表名(字段定義);

如:use school;(不能少)

create table teacher

(id int(3) not null primary key,

name char(10),

address varchar(50),

year date

);刪除表:drop table 表名;

如:drop database 庫名;

mysql 的基本用法 mysql基本用法

mysql 5.1 中文參考手冊 show databases 顯示資料庫 drop database 資料庫名 刪除資料庫 set names utf8 設定資料庫編碼為utf 8 source x 資料庫名.sql 匯入乙個資料庫 use 資料庫名 嘗試訪問資料庫 create database...

mysql 的基本用法 mysql基本用法

mysql 5.1 中文參考手冊 show databases 顯示資料庫 drop database 資料庫名 刪除資料庫 set names utf8 設定資料庫編碼為utf 8 source x 資料庫名.sql 匯入乙個資料庫 use 資料庫名 嘗試訪問資料庫 create database...

MySQL基本用法

一 庫的基本用法 建立資料庫 create database 資料庫名 字符集設定 default character set uft8 刪除資料庫 drop database 資料庫名 誤刪了可以參考mysql的資料恢復 檢視資料庫 show databases 可以檢視當前有幾個資料庫 分別叫什...