打開mysql,輸入密碼。
MySQL是一個關系型資料庫管理系統,由瑞典MySQL AB 公司開發,目前屬於Oracle旗下產品。MySQL 是最流行的關系型資料庫管理系統之一,在 WEB 應用方面,MySQL是最好的 RDBMS (Relational Database Management System,關系資料庫管理系統) 應用軟體。
『貳』 在mysql中怎麼樣查看所在的資料庫名
可以使用這幾種方式:
(1)用select database()語句;
selectdatabase();
(2)用show tables語句,查詢出來的結果中,第一行為Tables_in_***,這里***就版
是當前所在的資料庫名權稱。
showtables;
(3)用status語句,查詢出來的結果中有一行是currrent database:***。這里***就
是當前所在的資料庫名稱。
status;
希望可以幫到你。
『叄』 如何查看mysql資料庫
查看當前使用的資料庫,可使用如下命令
mysql> select database(); #使用函數database()
mysql> show tables; #列頭信息中可看出當前使用的db,格式為:Tables_in_[db_name]
mysql> status; #注意結果中的"Current database:"信息
查看系統中有哪些資料庫,
mysql> show databases;
更換當前使用的資料庫,
mysql> use db_name;
返回當前資料庫下的所有表的名稱
mysql> show tables;
或者直接用如下命令
mysql> show tables from db_name;
查看錶結構,可使用如下命令
mysql> desc 表名;
mysql> describe 表名;
mysql> show columns from 表名;
mysql> show create table 表名;
或者,
mysql> use information_schema
mysql> select * from columns where table_name='表名';
15個 MySQL 菜鳥問題
問題1:你如何確定 MySQL 是否處於運行狀態?
答案: Debian 上運行命令 service mysql status,在RedHat 上運行命令 service mysqld status。然後看看輸出即可。
問題2:如何開啟或停止 MySQL 服務?
答案:運行命令 service mysqld start 開啟服務;運行命令 service mysqld stop 停止服務。
問題3:如何通過 Shell 登入 MySQL?
答案:運行命令 mysql -u root -p
問題4:如何列出所有資料庫?
答案:運行命令 show databases;
問題5: 如何切換到某個資料庫並在上面工作?
答案:運行命令 use database_name; 進入名為 database_name 的資料庫。
問題6:如何列出某個資料庫內所有表?
答案:在當前資料庫運行命令 show tables;
問題7:如何獲取表內所有 Field 對象的名稱和類型?
答案:運行命令 describe table_name;
問題8:如何刪除表?
答案:運行命令 drop table table_name;
問題9:如何刪除資料庫?
答案:運行命令 drop database database-name;
問題10:如何查看錶內所有數據?
答案:運行命令 select * from table_name;
問題11:如何從表(比如 oc_users )中獲取一個 field 對象(比如 uid)的所有數據?
答案:運行命令 select uid from oc_users;
問題12:假設你有一個名為 『xyz』 的表,它存在多個欄位,如 『createtime』 和 『engine』。名為 engine 的欄位由 『Memoty』 和 『MyIsam』 兩種數值組成。如何只列出 『createtime』 和 『engine』 這兩列並且 engine 的值為 『MyIsam』?
答案:運行命令 select create_time, engine from xyz where engine = 」MyIsam」;
問題13:如何列出表 『xrt』 內 name 域值為 『tecmint』,web_address 域值為 『tecmint.com』 的所有數據?
答案:運行命令 select * from xrt where name = 「tecmint」 and web_address = 「tecmint.com」;
問題14:如何列出表 『xrt』 內 name 域值不為 『tecmint』,web_address 域值為 『tecmint.com』 的所有數據?
答案:運行命令 select * from xrt where name != "tecmint" and web_address = "tecmint.com";
問題15:如何知道表內行數?
答案:運行命令 select count(*) from table_name;
『肆』 mysql 怎麼查看資料庫名稱
直接執行
show
databases;
即可查看到本機上的mysql資料庫。
『伍』 查看MySQL伺服器下資料庫。 查看伺服器中所有資料庫名稱包括「teach」字元串的資料庫
你得有資料庫的root許可權,,或是能訪問mysql這個庫才成....
select database_name from mysql.innodb_table_stats where database_name REGEXP 'teach' GROUP BY database_name
『陸』 mysql如何查看所有資料庫名命令
使用show databases,就能來列出你有許可權源操作的資料庫名,如果你只有一個資料庫許可權,那麼列出來的就是你當前的資料庫名。
『柒』 如何查詢MySQL伺服器中的所有資料庫名稱
用sql獲取資料庫中所有的表名的方法:
MySQL下:select
table_name
from
information_schema.tables
where
table_schema='csdb'
and
table_type='base
table';
擴展:
1、oracle下:select
table_name
from
all_tables;
2、sql
server下:select
name
from
sys.tables
go