第一种方法:在左侧点击右键,选择"show line numbers". 第二种方法:Ctrl+F10,打开视图菜单,选择"show line numbers". 第三种方法: windows->Preferences->General->Editors->Text Editors ->show line numbers.
mysql查看数据库中所有表的行数,并进行排序: 进行数据库迁移或还原后,可以通过比较行数,检查数据是否正确. mysql> use information_schema; mysql> select table_name,table_rows from tables where TABLE_SCHEMA= 'kpsumi' order by table_rows desc; 原文地址:http://blog.51cto.com/9285090/2119096