如何使用已經安裝好的mysql資料庫管理系統?
方法1:開始->所有程式,找到mysql程式資料夾下面的控制台命令提示框,在裡面輸入root使用者密碼,驗證成功之後,就可以使用了。
方法2:在執行框中輸入cmd之後,開啟命令提示窗。
切換到目錄」 c:\program files\mysql\mysql server 5.6\bin」
輸入:mysql -uroot –p(無分號)
再按提示輸入密碼即可登入進資料庫管理系統裡面。
如何檢視資料庫中的其它使用者?
select user, password from mysql.user;
修改使用者密碼:
1.exit退出當前登入使用者。
2.輸入
mysqladmin -uroot -p123456 password 1234;
新建乙個使用者:
create user user1;
給新使用者賦值並給密碼:
grant select,delete,update,insert on . to user1@』%』 identified by 『1234』
新建資料庫:
create database qq;
顯示資料庫管理系統中已經有幾個資料庫。
show databases;
選擇資料庫為當前資料庫。
use qq;
刪除掉資料庫
drop test;
新建表
create table student(id varchar(5) primary key,name varchar(10) not null,birthday date,*** char(2) check(*** in(『男』,』女』)),goal int check(goal>=0 and goal<=100));
檢視表結構:
show columns from student;
檢視資料庫中的所有表
show tables;
往表中插入一條資料:
insert into student values(『s001』,』張三』,』1992-02-03』,』男』,97);
檢視表中的資料。
select * from student;
檢視表中的資料並給表頭改名:
select id 學號,name 姓名,birthday 生日,*** 性別,goal 成績 from student;
修改一條記錄
update student set name =』李四』,*** =』女』 where id =』s001』;
刪除一列:
delete from student where id =』s001』;
新增一列:
alter table student add teacher varchar(10);
刪除一列:
alter table student drop teacher;
修改一列上的資料型別:
alter table student modify teacher varchar(20);
修改一列的約束。
alter table student modify teacher varchar(20) not null;
修改一列的名字:
alter table student change teacher t1 varchar(20);
初學mysql命令
建立資料庫mydb create database mydb 刪除資料庫mydb drop database mydb 檢視資料庫列表 show databases 檢視所有表的清單 show tables 檢視資料庫mydb中所有表的清單 先選擇資料庫use mydb 再show tables 檢...
初學git git常見命令操作
vim readme.txt 建立readme.txt,並在其中編輯檔案內容。git status 檢視當前倉庫狀態,判斷是否有檔案修改過。git diff readme.txt 比較該檔案修改前後的內容變化。git add readme.txt 將修改好的檔案,提交修改。git commit m ...
MySQL常見命令
mysql開啟第一步看有哪些資料庫 1.顯示資料庫命令 show databases 2.預設資料庫有 1.information schema 原資料庫資訊 2.mysql 資料庫使用者資訊 3.performance schema 收集效能資訊 4.test測試資訊 也屬於使用者資料庫 3.選擇...