知識點024-讓你慢慢熟悉mysql使用語句的方法

MySQL平常操做命令(多操做幾遍就會記住了):數據庫

show databases; 查看數據庫ide

create database test_db; 建立名爲test_db數據庫.net

use test_db; 進入test_db數據庫。get

show tables; 查看數據庫裏有多少張表。table

create table test01 (id varchar(20),name varchar(20));建立名爲test01表,並建立兩個字段,id、name、數據長度(用字符來定義長度單位。)class

insert into test01 values ("001","wugk1"); 向表中插入數據。test

select * from test01; 查看test01表數據內容。date

Select * from test01 where id=1 and age =’jfedu’;多個條件查詢。select

desc test01;查看test01表字段內容;權限

alter table test01 modify column name varchar(20);修改name字段的長度;

update test01 set name='start' where id=1; 修改name字段的內容;

受權命令:

grant  all  on test_db.*  to  test@localhost identified by '123456';

受權全部的test_db 庫下面的全部表 ,給test用戶,本地網段,密碼123456

grant  select,insert,update,delete on *.* to test@」%」  identified by  ‘123456’;

受權DML 權限給全部庫和表,給全部網段的test用戶,密碼123456

相關文章
相關標籤/搜索