MySQL中一些簡單的基本操作

一、數據庫操作 1.查看數據庫 查看MySQL中有什麼數據庫:show databases; 2.創建數據庫 創建數據庫: create database hello;(創建名稱爲hello的數據庫) 3.使用數據庫 假設要使用hello數據庫:use hello; 4.刪除數據庫 假設要刪除hello的數據庫:drop database hello;可以從左邊看到,名爲hello的數據庫已經被刪
相關文章
相關標籤/搜索