1、oracle下:select table_name from all_tables
2、MySQL下:select table_name from information_schema.tables where table_schema='csdb' and table_type='base table'
3、sql server下:select name from sys.tables go
常用工具有:phpMyAdmin,或者Navicat,或者在mysql文件下的命令提示符中输入:
mysqlbinmysql
-h主机地址
-u
用户名
-p
用户密码//登录
show
databases//显示数据库名
use
dataname;//显示数据库中的表
show
tables;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)