由於現在的公司用mysql居多,而我也從oracle轉到mysql,雖然說語法差不多,但是,還是有必要記錄下:
1.建立資料庫名
create database 資料庫名;
2.刪除資料庫 drop database 《資料庫名》;
3.建表
create table `t_combo` (
`fid` int(11) not null auto_increment comment '主鍵',
`fname` varchar(50) not null,
`fwholecitymessage` int(11) default null comment '全程營銷簡訊',
`fexactlymesaage` int(11) default null comment '精準營銷簡訊',
primary key (`fid`)
) engine=innodb auto_increment=1111111115 default charset=utf8;
4.刪除表
drop table table_name ;
5.插入資料 insert into table_name ( field1, field2,...fieldn )
values ( value1, value2,...valuen );
6.修改資料
update table_name set field1=value1 and ....
wehre ....
7.批量插入
insert into
table_name (field1,field2,...fieldn
)values
(#,#,...#)
MySQL使用總結 持續更新中
本文目的 使用mysql遇到並解決了一些問題,在這裡記錄與分享。問題1 linux源 安裝mysql時,預設不安裝innodb儲存引擎,需要手動安裝 如果忘記手動安裝innodb,那麼任何表建立時,如果儲存引擎指定為innodb,mysql會預設選擇myisam作為儲存引擎,並且不報錯也不警告,這樣...
MySQL使用總結 持續更新中
本文目的 使用mysql遇到並解決了一些問題,在這裡記錄與分享。問題1 linux源 安裝mysql時,預設不安裝innodb儲存引擎,需要手動安裝 如果忘記手動安裝innodb,那麼任何表建立時,如果儲存引擎指定為innodb,mysql會預設選擇myisam作為儲存引擎,並且不報錯也不警告,這樣...
MySQL問題總結(持續更新)
1.新增新使用者 準備建立乙個新使用者的時候報錯了 create user username identified by password the mysql server is running with the skip grant tables option so it cannot execu...