/*檢視資料庫*/
-- 檢視所有的資料庫. 格式: show databases;
show
databases
;-- 檢視指定資料庫的字元編碼. 格式: show create database 資料庫名;
show
create
database mydb;
show
create
database mydb2;
show
databases
;
show
create
database mysql;
/*建立資料庫*/
-- 方式一: 使用指定的字元編碼表,建立資料庫.
格式: create
database 資料庫名 [
character
set 字元編碼]
;-- 方式二: 使用預設的字元編碼表,建立資料庫.
格式: create
database 資料庫名;
create
database mydb character
set utf8;
-- 方式一
create
database mydb2;
-- 方式二
create
database mydb1;
create
database mydb2 character
set utf8;
/*刪除資料庫*/
-- 刪除資料庫. 格式: drop database 資料庫名;
drop
database mydb2;
drop
database mydb1;
show
create
database mydb2;
alter
database mydb2 character
set gbk;
show
create
database mydb2;
/*使用資料庫*/
-- 檢視當前使用的資料庫. 格式: select database();
select
database()
;-- 設定當前使用的資料庫. 格式: use 資料庫名;
use mydb;
use mydb2;
select
database()
;
資料庫(庫操作)
information schema 虛擬庫,不占用磁碟空間,儲存的是資料庫啟動後的一些引數,如使用者表資訊 列資訊 許可權資訊 字元資訊等 performance schema mysql 5.5開始新增乙個資料庫 主要用於收集資料庫伺服器效能引數,記錄處理查詢請求時發生的各種事件 鎖等現象 my...
資料庫 資料庫基本操作
操作練習 修改表結構 表資料的操作 實現 1 建立表 create table student stu no char 12 not null primary key,stu name varchar 20 not null gender tinyint 1 default1,age tinyint...
資料庫操作
第乙個問題 通常用datareader對像 sqlcommand comm new sqlcommand select count from login where name textbox1.text and password textbox2.text,conn datareader dr co...