1、同時按下鍵盤上的win+r按鍵,調(diào)出運行框,并在彈出的運行框中輸入cmd后按下回車按鍵。
創(chuàng)新互聯(lián)專注于光明網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供光明營銷型網(wǎng)站建設(shè),光明網(wǎng)站制作、光明網(wǎng)頁設(shè)計、光明網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造光明網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供光明網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
2、在彈出的頁面中輸入mysql -u root -p命令,并點擊鍵盤上的回車按鍵。
3、在彈出的頁面中輸入需要查詢的賬號的密碼并按下鍵盤上的回車按鍵。
4、這樣就可以查看到所有的數(shù)據(jù)庫。
update 表名 set 字段名 ='要修改的數(shù)據(jù)' where 字段名 ='原有的的數(shù)據(jù)' and 限制條件(字段名='限制條件')
其實只要找到表可以在表里面改,但是數(shù)據(jù)量大的話很難查找。用語句修改更方便。
查看自己創(chuàng)建的數(shù)據(jù)庫,跟查看別人創(chuàng)建的數(shù)據(jù)庫沒有什么分別,可以用下列語句來查看某個數(shù)據(jù)庫:
查看創(chuàng)建數(shù)據(jù)庫的命令
show
create
database
dbName;
查看所有數(shù)據(jù)庫命令
show
databases;
查看某個數(shù)據(jù)庫的命令
show
database
dbName;
前往操作某個數(shù)據(jù)庫
use
dbName;
你要是想用命令行的話,下面給你一些命令(MySQL) 啟動,關(guān)閉MySQL 在CMD中輸入: net start mysql 在服務(wù)管理器中啟動,關(guān)閉. MySQL登錄在CMD中輸入 mysql –h localhost –u root -p 查看數(shù)據(jù)庫: show databases; 使用數(shù)據(jù)庫: use db_name; 查看表: show tables; 查看表結(jié)構(gòu): describe table_name; 要是不想用命令就在安裝MYSQL的瀏覽器,直接在里面打開看就好了
MySQL 查看表結(jié)構(gòu)簡單命令。
一、簡單描述表結(jié)構(gòu),字段類型desc tabl_name;
顯示表結(jié)構(gòu),字段類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select * from information_schema.columns where table_schema = 'db' #表所在數(shù)據(jù)庫
and table_name = 'tablename' ; #你要查的表
三、只查詢列名和注釋
select column_name,
column_comment from information_schema.columns where table_schema ='db' and
table_name = 'tablename' ;
四、#查看表的注釋
select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'
ps:二~四是在元數(shù)據(jù)表中查看,我在實際操作中,常常不靈光,不知為什么,有了解的大俠請留印。
五、查看表生成的DDL show create table table_name;
數(shù)據(jù)庫的權(quán)限?應(yīng)該是用戶的權(quán)限,直接查詢mysql數(shù)據(jù)庫下users表,里面有記錄。