- by workbench
用workbench前現在xampp control中開啟mysql和apache
- by cmd
用cmd檢視現在所有的資料庫
首先在cmd中轉到mysql的安裝目錄的bin資料夾下,在cmd中
d:沒密碼直接回車即可cd d:\xamppp\mysql\bin
mysql -h localhost -u root -p
看現在有哪些資料庫用
show databases;看andi資料庫中有哪些表
use andi;此外可以檢視本機資料庫資訊show tables;
select * from dxsum_pdxconv_adniall limit 10;
在啟動mysql後
status
SQL基本操作
create database mydatabase1 on primary 配置主資料檔案的選項 name mydatabase2 主資料檔案的邏輯名稱 filename d database database1 mydatabase1.mdf 主資料檔案的實際儲存路徑 size 5mb,主檔案的...
sql 基本操作
資料庫表的操作 sql code 列操作 新增列 alter table t add mycolumn intidentity 1 1 not null default 0 刪除列alter table t drop column mycolumn 修改列 alter table t alter c...
SQL 基本操作
select 用法 select 列名稱1,列名稱2 from table naem select from table name select distinct 去除列標籤中重複的部分 select distinct column naem1,colum name2 from table name...