mysql 顯示所有的資料庫

2021-07-24 10:42:56 字數 661 閱讀 2368

mysql 顯示所有的資料庫,**如下:

mysql> show databases

-> ;

mysql> show tables;

mysql顯示命令

二、顯示命令 

1、顯示資料庫列表。 

show databases; 

2、顯示庫中的資料表: 

use mysql;

show tables; 

3、顯示資料表的結構: 

describe 表名; 

4、建庫: 

create database 庫名; 

5、建表: 

use 庫名; 

create table 表名 (字段設定列表); 

6、刪庫和刪表: 

drop database 庫名; 

drop table 表名; 

7、將表中記錄清空: 

delete from 表名; 

8、顯示表中的記錄: 

select * from 表名

//---------------------------------------

(1)選擇使用某個資料庫

use ***db;

(2)建立資料庫

create database ***db;

如何獲得mysql資料庫的所有的列

應用場景 1 封裝jdbc 時,獲取 某一張表 table 的所有字段 列 2 報表開發 時,對錶進行操作 查詢資料庫中所有表名 select table name from information schema tables where table schema 資料庫名稱 and table t...

查詢資料庫中所有的表

select from sysobjects where xtype u 查詢當前資料庫下所有使用者建立的表 xtype char 2 物件型別。可以是下列物件型別中的一種 c check 約束 d 預設值或 default 約束 f foreign key 約束 l 日誌 fn 標量函式 if 內...

mysql下備份所有的資料庫和資料表

要求 1 mysql下的資料庫的表要以table name.sql備份儲存 2 儲存在當前目錄下,並以當天時間命名 bin bash myuser root mypass 123456 host localhost backupdir backup mysql date date f 判斷備份目錄是...