發表文章

目前顯示的是有「drop」標籤的文章

[Database] Mysql語法整理

不知道有沒有漏掉的,這是我目前整理出來,常用到的語法。 ==================================================== ==================================================== @@@@@@------>資料庫管理 /-------------------------------------------------------------------------------     建立資料庫 -------------------------------------------------------------------------------/ shell> mysql -u openacs -popenacs mysql> CREATE DATABASE +(NAME); /-------------------------------------------------------------------------------  檢視現有的資料庫 -------------------------------------------------------------------------------/ shell> mysql -u openacs -popenacs mysql> SHOW DATABASES; /-------------------------------------------------------------------------------  刪除現有的資料庫 -------------------------------------------------------------------------------/ shell> mysql -u openacs -popenacs mysql> DROP DATABASE +(NAME); ==================================================== ===========...