发布网友 发布时间:2022-03-24 22:09
共5个回答
懂视网 时间:2022-03-25 02:30
mysql查看表结构的方法是:
1、打开mysql命令行编辑器。
2、输入密码,登录Mysql数据库。
3、先显示数据库,选择一个要创建表的数据库。
4、使用那个数据库,当然也可以直接新建一个数据库。
5、在那个数据库中创建一个表。
6、最后,输入describe 表名;就可以显示表结构了。
热心网友 时间:2022-03-24 23:38
TABLE 语句
具体语法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其实从语法上看,可以排序,也可以过滤记录集,不过比较简单,没有 SELECT 那么强大。
示例 1
简单的建一张很小的表 y1,记录数为 10 条。表 t1,插入 10 条记录
mysql-(ytt/3305)->create table t1 (r1 int,r2 int);
Query OK, 0 rows affected (0.02 sec)
mysql-(ytt/3305)->insert into t1
with recursive aa(a,b) as (
select 1,1
union all
select a+1,ceil(rand()*20) from aa where a < 10
) select * from aa;
Query OK, 10 rows affected (0.00 sec)
Records: 10 Duplicates: 0 Warnings: 0
简单全表扫描mysql-(ytt/3305)->select * from t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)热心网友 时间:2022-03-25 00:56
查看表名可用“show tables”。
其中红框部分就是表名,如图:
查询表结构用“desc 表名”:
如查询files表的表结构,则语句为“desc files”
如图:
热心网友 时间:2022-03-25 02:31
function list_table($db){
$result=mysql_list_tables($db);
$list.="<table border='1' width='800px' style='text-align:center;'>";
while($rows=mysql_fetch_row($result)){
$list.="<tr><td>".$rows[0]."</td></tr>";
}
$list.="</table>";
return $list;
}这个是用php写的可以查询某个数据库里的所有表的方法
热心网友 时间:2022-03-25 04:22
1.show tables
2.desc 表名