2、資料庫命令:
net start mysql //啟動mysql服務
net stop mysql //停止mysql服務
show databases; //顯示出所有資料表
create database default character set gbk 資料庫名; //建立資料庫
drop database 資料庫名; //刪除資料庫
use 資料庫名 //使用資料庫
show tables; //顯示出該表結構
describe 表名; //顯示表結構
//建立表
create table 表名(
id int(2) not null auto_increment comment '主鍵',
name varchar(20) character set gb2312 not null default 'ddd' comment 'sss',
con varchar(20) default null comment 'ddd',
primary key (id),
key name (name),
key con (con)
)engine=innodb auto_increment=1 charset=gb2312;
//獲取表結構
desc 表名;
show colmns from 表名;
bescribe 表名;
//插入資料 insert info 表名 values('1');
//查詢資料 select * from 表名;
//增加字段
alter table 表名 add 欄位名 int(4) default '0';
//增加索引
alter table 表名 add index 關聯表名(關聯字段);
alter table cl_user add index cl_info(infoid);
Linux 二 各種實用命令
繼續linux命令學習,沒有什麼捷徑,每個命令都去敲幾遍就熟悉了,第二篇學習的是一些比較實用類的命令,主要是從開發的角度進行學習,並不深入,話不多說,開始!顯示主機名稱 顯示系統資訊 顯示當前系統中耗費資源最多的程序 顯示瞬間的程序狀態 顯示指定的檔案 目錄 已使用的磁碟空間的總量 這種顯示不友好,...
MySQL各種指令 MySQL常用命令操作大全
linux操作mysql資料庫 mysql u root p 等待輸入密碼,密碼不可見。然後輸入密碼。root是使用者名稱 然後進入mysql 1 顯示資料庫 show databases 2 選擇資料庫 use 資料庫名 3 顯示資料庫中的表 show tables 4 顯示資料表的結構 desc...
mysql命令學習二
匯出庫中的表tmobilesegs到tmobilesegs.sql中,可以倒資料和表結構 匯出庫中的表tmonthfees200807的結構 3.source d 工作有關 資料庫 sql tmobilesegs.sql 匯入表的結構和資料 4.set names gbk 設定字符集 5.show ...