博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
navicat MySQL 只有1000条记录
阅读量:6261 次
发布时间:2019-06-22

本文共 1362 字,大约阅读时间需要 4 分钟。

/*************************************************************************** *                    navicat MySQL 只有1000条记录  * 说明: *     早上跑来了,查看一下数据库中数据情况,结果navicat只能看到1000条记录, * 查看mysql数据库结果是有全部的数据,原因是navicat只能显示1000条记录。 * *                                  2016-10-29 深圳 南山平山村 曾剑锋 *************************************************************************/一、参考文档:    1. mysql 插入操作最多能插入多少条记录        https://zhidao.baidu.com/question/160402098.html二、查看数据库实际数据情况:    [zengjf@root /usr/share/huishu]#  mysql -h 127.0.0.1 -u root -p    Enter password:     Welcome to the MySQL monitor.  Commands end with ; or \g.    Your MySQL connection id is 6481    Server version: 5.1.73-log Source distribution    Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.    Oracle is a registered trademark of Oracle Corporation and/or its    affiliates. Other names may be trademarks of their respective    owners.    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.    mysql> use sensor;    Database changed    mysql> show tables;    +------------------+    | Tables_in_sensor |    +------------------+    | baseInfo         |    +------------------+    2 rows in set (0.00 sec)    mysql> select count(*) from baseInfo;    +----------+    | count(*) |    +----------+    |     6475 |    +----------+    1 row in set (0.00 sec)

 

转载地址:http://wzesa.baihongyu.com/

你可能感兴趣的文章
数据结构与算法(位运算) --javascript语言描述
查看>>
数据结构与算法(回溯法) --javascript语言描述
查看>>
百度地图开发实例番外篇--实用方法(持续更新)
查看>>
“大数据应用场景”之隔壁老王(连载一)
查看>>
k均值聚类算法(k-means)
查看>>
修改springboot的端口来启动项目
查看>>
MaxCompute SQL原理解析及性能调优
查看>>
vue中慎用style的scoped属性
查看>>
深度学习在股票市场的应用
查看>>
redis源码分析之事务Transaction(下)
查看>>
【273天】我爱刷题系列(32)
查看>>
Hystrix基础入门和特性讲解
查看>>
webpack-dev-server模块
查看>>
解决brew默认安装iamgemagick7导致wand库运行错误问题
查看>>
进入页面跳转到指定锚点
查看>>
如何根据protobuf来Mock后台返回的数据
查看>>
JavaScript 运算符规则与隐式类型转换详解
查看>>
网站攻击中的csrf和xss
查看>>
(CZ深入浅出Java基础)反射
查看>>
图像颜色提取
查看>>