显示数据库的结构应使用的命令是?(VFP)

如题所述

打开数据库的命令是:open
database
数据库名.
修改数据库的命令是:modify
database
数据库名.
你输入的是datebase,错了一个字母,当然不能识别了
温馨提示:答案为网友推荐,仅供参考
第1个回答  推荐于2018-04-19
use 表名
disp stru
这只是显示,如果要修改用
modi stru本回答被网友采纳
第2个回答  推荐于2016-03-11
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 表名
希望可以帮到你!本回答被提问者采纳
相似回答