您好,登錄后才能下訂單哦!
小編給大家分享一下使用mysql數(shù)據(jù)庫的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
一、MySQL服務(wù)器的啟動(dòng)與關(guān)閉
1、啟動(dòng)MySQL服務(wù)器
開始 -> 運(yùn)行 輸入“cmd”,然后在命令提示符下輸入“net start MySQL”指令。
2、連接MySQL服務(wù)器
輸入指令:MySQL -uroot -h227.0.0.1 -p111(-h227.0.0.1看個(gè)人情況輸不輸)
注:用戶名為“root”,MySQL數(shù)據(jù)庫服務(wù)器地址為“127.0.0.1”,密碼為“111”,三者之間必須有空格。
3、關(guān)閉MySQL服務(wù)器
開始 -> 運(yùn)行 輸入“cmd”,然后在命令提示符下輸入“net stop MySQL”指令。
二、操作MySQL數(shù)據(jù)庫
1、創(chuàng)建數(shù)據(jù)庫
create database 數(shù)據(jù)庫名;
2、查看數(shù)據(jù)庫
show databases;
3、選擇指定數(shù)據(jù)庫
use 數(shù)據(jù)庫名;
4、刪除數(shù)據(jù)庫
drop database 數(shù)據(jù)庫名;
注:自動(dòng)刪除MySQL安裝目錄中的“C:/AppServ/MySQL/data”文件夾。
三、操作MySQL數(shù)據(jù)表
1、創(chuàng)建表
create table 表名 (column_name column_type not null,...);
create table語句的屬性說明
屬性 | 說明 | 屬性 | 說明 |
column_name | 字段名 | Primary key | 該列是否為主鍵 |
column_type | 字段類型 | AUTO_INCREMNT | 該列是否自動(dòng)編號(hào) |
Not null | null | 該列是否允許為空 |
創(chuàng)建數(shù)據(jù)表后,“C:\AppServ\MySQL\data\數(shù)據(jù)庫名\”中自動(dòng)創(chuàng)建對(duì)應(yīng)表文件(“表名.frm”,“表名.MYD”,“表名.MYI”)
2、查看數(shù)據(jù)庫中的表
show tables;
3、查看數(shù)據(jù)庫中所有的表
show tables;(前提是使用use database 數(shù)據(jù)庫;)
4、查看數(shù)據(jù)表結(jié)構(gòu)
describe 表名;
5、修改數(shù)據(jù)表結(jié)構(gòu)
alter table 表名 add [column] create_definition [first | after column_name] //添加新字段 add primary key (index_col_name,...) //添加主碼名稱 alter [column] col_name {set default literal |rop default} //修改字段名稱 change [column] old_col_name create_definition //修改字段名及類型 modify [column] create_definition //修改字段類型 drop [column] col_name //刪除字段 drop primary key //刪除主碼 rename [as] new_tablename //更改表名 eg:alter table Admin_Info drop A_Pwd, rename as Admin_Info2;
6、刪除指定數(shù)據(jù)表
drop table 表名;
四、操作MySQL數(shù)據(jù)
1、添加表數(shù)據(jù)
語法1:insert into 表名 values(值1,值2,...)(自增長的列應(yīng)寫null) 語法2:insert into 表名(字段1,字段2,...) values (值1,值2,...) 語法3:insert into 表名 set 字段1=值1,字段2=值2,...
2、更新表數(shù)據(jù)
update 表名 set 字段1=值1 where 查詢條件
若無查詢條件,表中所有數(shù)據(jù)行都會(huì)被修改。
3、刪除表數(shù)據(jù)
delete from 表名 where 查詢條件
若無查詢條件,表中所有數(shù)據(jù)行都會(huì)被刪除。
4、查詢表數(shù)據(jù)
select * from 表名;
5、限制查詢記錄數(shù)
select * from 表名 limit[start] length
start:表示從第幾行記錄開始輸出,0表示第1行
以上是使用mysql數(shù)據(jù)庫的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。