Argument out of range appears in mysql query database

mysql5.7 version, using the tool (Navicat Premium) argument out of range pop-up prompt appears when querying the database
after I check that the data format in the database is normal, if it is a numerical format, I use the same sentence bigint the same tool using mysql5.3 query will not appear.

the data can be queried every time, but the sort will not take effect.
what"s the problem, bosses?

Mar.06,2021

the maximum signed BIGINT value is 9223372036854775807. Check for overflow
refer to official problem explanation

.
https://dev.mysql.com/doc/refman/8.0/en/out-of-range-and-overflow.html
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b38823-344cc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b38823-344cc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?