建立資料庫:
create database books;
建立使用者:
mysql> grant select,insert,delete,uptate
-> on books.*
-> to dada identified by 'yujianqi2011';
使用資料庫:
use dbname;
use dada;
新建資料庫表
create table tablename(columns);
create table demo(
userid int unsigned not null auto_increment primary key,
username char(50) not null,
password char(20) not null,
age int not null,
city char(20) not null
);顯示資料庫表
show tables;
在資料庫中插入資料
insert into demo values(null,"dada","yujianqi2011",27,"beijing");
insert into demo values(null,"xiaoyin","yujianqi2011",26,"shanghai");
查詢資料
select name, city from customers where name="dada";
更新資料
update customers
set address = "北京市海淀區";
刪除資料
delete from dada where name = "dada";
表的刪除
drop table table;
資料刪除
drop database database;
資料庫操作命令行
第一步 啟動及關閉資料庫服務 net stop mysql net start mysql第二步 找到資料庫mysql位置並登陸進入 找到位置 c phpstudy phptutorial mysql bin 登陸 mysql u 使用者名稱 h主機名或者ip位址 p密碼 mysql u root ...
資料庫的命令列操作
時間一長再熟悉的命令都會忘記,不如記錄下來有備無患 登陸資料庫的伺服器以後直接輸入命令 mysql 按回車鍵enter 1 mysql show databases 顯示所有的資料庫 2 mysql use 資料庫名字 使用需要的資料庫 3 mysql desc 資料表名 檢視需要的資料表結構 4 ...
MySQL命令列匯入sql資料庫
對以,沒在windows的環境變數path中mysql安裝路徑的,把sql檔案拷貝到c windows temp檔案下。這樣mysql伺服器有許可權讀取。進入mysql目錄下的bin資料夾 cd mysql的bin資料夾的路徑如我輸入的命令列 cd d program files mysql mys...