您好,登錄后才能下訂單哦!
下文主要給大家?guī)韔racle和mysql有何具體區(qū)別,希望這些內(nèi)容能夠帶給大家實際用處,這也是我編輯oracle和mysql有何具體區(qū)別這篇文章的主要目的。好了,廢話不多說,大家直接看下文吧。
工作以來一直用的是oracle,但是發(fā)現(xiàn)很多公司可能用的是mysql,故簡單學習下mysql的語法,也算是從零開始了。 MySQL有三大類數(shù)據(jù)類型, 分別為數(shù)字、日期\時間、字符串, 這三大類中又更細致的劃分了許多子類型: 數(shù)字類型 整數(shù): tinyint、smallint、mediumint、int、bigint 浮點數(shù): float、double、real、decimal 日期和時間: date、time、datetime、timestamp、year 字符串類型 字符串: char、varchar 文本: tinytext、text、mediumtext、longtext 二進制(可用來存儲圖片、音樂等): tinyblob、blob、mediumblob、longblob 數(shù)據(jù)庫常用命令 查看表的結構:desc tabletop800; describe tabletop800; 查看表的創(chuàng)建結構:show create table tabletop800; 修改表的字段類型alter table tabletop800 change rating rating char(10); 修改表的字段為 NOT NULL + Defaultalter table tabletop800 change price price char(20) not null default 'Free'; 修改表的主鍵: alter table tableop800 drop primary key; 先刪除主鍵 alter table tabletop800 add primary key(id, country, dtime, price); 再添加主鍵更新表的字段值:update tabletop800 set price='Free' where price=''; 導出數(shù)據(jù)庫mysqldump -u root top800 > sql_database_bk/top800_database_bk_2011-10-22.sql 導出數(shù)據(jù)庫的表mysqldump -u root top800 tabletop800 > sql_database_bk/top800_tabletop800_table_bk_2011-10-22.sql 登錄MySQL: mysql -u root -p'123456' 創(chuàng)建數(shù)據(jù)庫: create database top800; 導入數(shù)據(jù)庫: mysql -u root -p'123456' top800 < top800_database_bk_2011-11-11.sql 發(fā)現(xiàn)mysql的基本語法和oracle還是一樣的,區(qū)別比較大的就是對已建表的修改語法: mysql在創(chuàng)建后對表的操作語法如下: alter table 語句用于創(chuàng)建后對表的修改, 基礎用法如下: 添加列 基本形式: alter table 表名 add 列名 列數(shù)據(jù)類型 [after 插入位置]; 示例: 在表的最后追加列 address: alter table students add address char(60); 在名為 age 的列后插入列 birthday: alter table students add birthday date after age; 修改列 基本形式: alter table 表名 change 列名稱 列新名稱 新數(shù)據(jù)類型; 示例: 將表 tel 列改名為 telphone: alter table students change tel telphone char(13) default "-"; 將 name 列的數(shù)據(jù)類型改為 char(16): alter table students change name name char(16) not null; 刪除列 基本形式: alter table 表名 drop 列名稱; 示例: 刪除 birthday 列: alter table students drop birthday; 重命名表 基本形式: alter table 表名 rename 新表名; 示例: 重命名 students 表為 workmates: alter table students rename workmates; 刪除整張表 基本形式: drop table 表名; 示例: 刪除 workmates 表: drop table workmates; 刪除整個數(shù)據(jù)庫 基本形式: drop database 數(shù)據(jù)庫名; 示例: 刪除 samp_db 數(shù)據(jù)庫: drop database samp_db; oracle在創(chuàng)建后對表的操作語法如下: 添加字段的語法:alter table tablename add (column datatype [default value][null/not null],….); 修改字段的語法:alter table tablename modify (column datatype [default value][null/not null],….); 刪除字段的語法:alter table tablename drop (column);添加、修改、刪除多列的話,用逗號隔開。
對于以上關于oracle和mysql有何具體區(qū)別,大家是不是覺得非常有幫助。如果需要了解更多內(nèi)容,請繼續(xù)關注我們的行業(yè)資訊,相信你會喜歡上這些內(nèi)容的。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。