mysql之一 基本用法

2021-07-30 03:33:01 字數 802 閱讀 3867

mysql還真的與sql server的語法有些不同,所以有必要操練操練.安裝時候一定要注意最後的窗體上的初始密碼,這個很重要,改密碼都得靠它了,而且這個密碼還挺難輸入。今天暫時先練習這10條吧,明天再看看主外來鍵怎麼用。

1,mysql修改密碼:

2,mysql命令:

3,判斷資料庫存在:

4,判斷表是否存在:select table_name from information_schema.tables where table_schema='school' and table_name='teacher' ;

5,檢視表結構:desc table_name;show create table student;這個更詳細

6,修改資料字段型別alter table teacher change address address nvarchar(100);

mysql> alter table table_name change old_field_name new_field_name field_type;

7,刪除字段:alter table teacher drop passtest;

mysql> alter table table_name drop field_name;

8,增加字段: alter table teacher add id int(4) not null primary key auto_increment;

子增長字段可以設定id值,使用自己增加,寫入0

9,關於索引:

10,檢視索引:mysql> show index from tablename;

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基本用法

mysql基本操作 注意全英文 啟動 開始 mysql command line client 使用者名稱 root,密碼 顯示資料庫 show database 使用資料庫 use 庫名 use mysql 顯示資料庫表 show tables 顯示表結構 describe 表名 如 descri...