mySQL安裝及部分語句

2021-07-29 05:31:40 字數 860 閱讀 8102

輸入mysqld   -install命令,回車,會出現service   successfully   installed,表示安裝成功

3:輸入net start mysql命令,回車,會出現mysql服務已經啟動成功

4:輸入mysql -u root命令,回車,會出現welcome to the mysql monitor

執行完四個步驟資料庫已開啟,可建立資料庫,建立資料庫表,插入記錄,查詢記錄,修改記錄等操作

刪除資料庫: mysqld -remover

二、常用mysql命令

1:檢視伺服器上存在哪些資料庫:show datebases

2:建立資料庫: create database 資料庫名

3:使用你所建立的資料庫:use 資料庫名

4:檢視資料庫表:show tables; empty set (0.00 sec) 說明剛才建立的資料庫中還沒有資料庫表

5:建立乙個資料庫表:vreate 表名(列名 資料型別(長度).....);

6:插入資料記錄:insert into abccs values (′hukejia′,′f′)

7:查詢資料表裡面的記錄:select * from abccs

8. 刪除:delete from 表名 where 條件
9.刪除一列  alter table table_name drop(列名);

10.修改列    alter table table_name modify(修改的內容);

11.修改資料:update table_name set 欄位名=字段值 where 條件限定

mysql安裝及啟動語句

1.安裝mysql 安裝 mysqld install 如果已存在,需要刪除原安裝的mysql sc delete mysql 重新安裝 mysqld install 查詢安裝結果 mysqld initialize console,並記錄初始密碼 2.初次啟動mysql mysql uroot p...

mysql 安裝及簡單SQL語句

1.mysql 資料庫安裝 1.儲存安裝中的資料庫密碼,2 配置環境變數 檢視隱藏檔案 open.bash profile 如果沒有隱藏檔案則需要建立隱藏檔案 touch bash profile 新增環境變數 export path path usr local mysql bin 儲存退出。注意...

Mysql的部分常用SQL語句

管理 查詢 1.查詢資料庫中,包含有資料記錄的表名 select table name from information schema.tables where table schema 資料庫名稱 and table rows 0 2.查詢當前日期時間前三天資料 select from 表名 wh...