天天看點

MySQL常用指令行大全

登陸

mysql -u root -p       
MySQL常用指令行大全

建立資料庫

create database Genebank;      
MySQL常用指令行大全

顯示資料庫

show databases;      
MySQL常用指令行大全

删除資料庫

drop database Genebank;      
MySQL常用指令行大全

連接配接資料庫

use Drugbank;      
MySQL常用指令行大全

目前選擇的資料庫目前選擇的資料庫

select database();      
MySQL常用指令行大全

顯示MYSQL的版本

select version();       
MySQL常用指令行大全

顯示目前時間顯示目前時間

select now();       
MySQL常用指令行大全