登陸mysql 一 登入mysql

2021-10-20 02:30:07 字數 1596 閱讀 1756

一:

一:管理員登入cmd:mysql -u加使用者名稱 -p加密碼.

二:檢視所有數字據庫:show databases;(檢視是複數)

三:建立資料庫:create database 加建立命令;

四:選擇使用其中乙個資料庫:use 加建立命令名;

五:檢視當前使用的資料庫中所有的表:show tables;

六:create table student(

name   varchar(12),

age       int,

***        char(4)

七:插入資料庫到表中:

insert into student values (『名字』,『年齡』,『性別』)

八:檢視當表中所有的資料:select * from student    ;

九:檢視表的結構: desc student;

十:建立一張表:temp1重新命名為:abc (creste table temp1 (id int);

alter table temp1 rename to abc;

十一:修改temp1 的id int欄位為:name varchar(20),並設定預設中為『路人甲』

alter table temp1  change column id name varchar (20) default  『路人甲』;

十二:增加一列:id  int  (6) ,放置在第一列 ,

alter table temp1 add column id int(6) first;

二:1.按照完整的資料庫建立語法建立乙個資料庫:create database  test1(建立名)default character  set utf8;

並且在裡面建立一張表:user (name varchar(20))

use    test1;

create table user (name varchar(20));

2.檢視資料庫的字符集:show create table user ;

3.檢視表的字符集: show create table user;

4.修改該錶資料庫的字符集:

在建立一張表:book (title varchar(30))

檢視資料庫的字符集

檢視表的字符集

修改表的名字:alter  table user rename (修改的名字)

1.建立資料庫:create database 資料庫名字;

2.檢視資料庫:show databases;

3.如果建立的是已存在的:create database if not exists 資料庫名字;

4.丟棄資料庫:drop database 資料庫名字;

5.檢視當前使用的庫:show tables;

6.改變使用資料庫:use 資料庫名字;

7.檢視所有字符集列表:show charset;

8檢視模糊查詢字符集裡有『utf-8』的字符集列表:show charset like 'utf-8%';

9.檢視表結構:desc 表名;

10.新建表:create table;

11.丟棄表:drop  table  表名;

登陸mysql 報錯 mysql 登入報錯

執行命令 mysql u root p 錯誤 error while loading shared libraries libncurses.so.5 cannot open shared object file 分析 缺少 libncurses.so.5 解決方案 yum install libn...

mysql 授權使用者登陸 mysql授權登入使用者

建立使用者並授權 create user voctrals identified by some password 允許遠端訪問 grant all privileges on to voctrals identified by some password with grant option 如果想...

mysql授權登入命令 MYSQL遠端登陸設定命令

mysql預設關閉遠端登入許可權,如下操作允許使用者在任意地點登入 1.進入mysql,grant all privileges on to root identified by with grant option identified by後跟的是密碼,可設為空。2.flush privilege...