发布网友 发布时间:2022-04-24 04:24
共7个回答
热心网友 时间:2022-04-07 15:53
mysql中查看一个表内容有几种方法,主要介绍用工具直接查看,还有用语句查看。
工具:mysql 5.6
工具查看:
1、以Navicat Premium软件为例,打开软件,登录到指定数据库。如图登录到localhost(本地)服务器下的badkano_test数据库。
2、点击badkano_test下的“表”,会出现table的列表,右键点击要查看的表,然后选择“打开表”或“打开表(快速)”,都可以浏览表中内容。
3、浏览结果:
语句查看:
1、同样使用工具登录到指定数据库。
2、然后依次点击上方的查询-新建查询。
3、弹出的文本框中,输入sql语句:
select * from student;4、查询结果:
热心网友 时间:2022-04-07 17:11
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-04-07 18:45
SHOW TABLE STATUS [FROM ] [LIKE '']追问详细点好吗,看不懂诶,我的是mysql5.0,其中在数据库test中有一表sk,该怎么写?
热心网友 时间:2022-04-07 20:37
select * from table
热心网友 时间:2022-04-07 22:45
这样可以用别名来解决哦
select 属性名 as 别名(你自己取)from 表名;
热心网友 时间:2022-04-08 01:09
图文并茂的那位就是正解了,命令是select * from table_name(表名字)
热心网友 时间:2022-04-08 03:51
查看表内容 命令不是 select * from table?????