查詢目前正在使用哪個資料庫

查詢目前正在使用哪個資料庫

Oracle

select db_unique_name from v$database;

 

MYSQL

select database();

 

MS SQLServer

select db_name();