mysql -u 使用者名稱 -p [密碼]
mysql> quit
或mysql> exit
select version(
);
select now(
);
show databases;
select database(
);
create database 庫名;
use 庫名;
show tables;
desc 表名;
//不建議使用
select
*from 表名;
create table (字段);
drop table 資料庫名.表名;
drop database 資料庫名;
insert into 表名 (欄位1,欄位2,...
) values(欄位1的值,欄位二的值,...
);
update 表名 set 欄位名1=值1 where 條件表示式
delete from 表名 where 條件表示式
creata table 建立的表名 as select
*from 要查詢的表名 where 條件表示式;
select user from mysql.user;
grant 許可權列表 on 資料庫名.表名 to 使用者名稱@**位址 [identified by '密碼'
]
MySQL 資料庫基礎操作
1.建立資料庫 建立乙個名為db1的資料庫 create database db1 tips 當我們建立資料庫沒有指定字符集和校驗規則時,系統使用預設字符集 utf8 檢視系統支援的字符集 show charset 建立乙個使用utf8字符集的資料庫 create database test1 ch...
MySQL資料庫基礎操作
net start mysql net stop mysql mysql u 登入賬戶名 預設情況下是root p 登入密碼 或者 mysql u 登入賬戶名 預設情況下是root p 回車 在系統提示的password後面輸入你的 登入密碼 mysql h ip u 登入賬戶名 預設情況下是roo...
MySQL資料庫基礎操作
1.使用 create 命令建立資料庫,語法如下 create database 資料庫名 此處的資料庫名不需要加雙引號2.資料庫的刪除 drop database 資料庫名 3.資料庫的選擇 use 資料庫名 4.建立資料表 create table 表的名字 項的名字 資料型別,項的名字 資料型...