1、双击打开MySQL软件,在左侧中找到【表】并且右击选择【新建表】,
2、选择新建表之后,在界面右侧可以添加数据,点击【添加栏目】就可以在下方再添加一行数据,
3、点击【另存为】,会d出一个【表名】窗口,输入表名,比如Class,点击【确定】按钮,
4、在表的下方就会出现一个名为Class的表了
用sql获取数据库中所有的表名的方法: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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)