sql - mySql equivalent Sqlserver statement with COUNT -
I am not looking for ways to convert the following Sqlserver statement to MySQL. I am using paging logic to view that data:
from Selection COUNT (*), select from CN, ID, date of time (Seal, tap) MzMesDb.SysLog where deleted = 'F' order according to ARD serious LIMIT 0,3; This idea is obtained from a table with 1000 rows where the deleted 'F':
cn id date time 1000 1 data 1000 2 data 1000 3 data Therefore, it will return the total number of rows and 3 selected rows.
Thanks for the help.
Maybe I'm missing something, but the following will not solve it: < MgMesDb.SysLog WHERE from the pre- SELECT (select cn, id, date time) as per the 'f' order ID SECL LIMIT 0,3 by COUNT (*) MzMesDb.SysLog)
Comments
Post a Comment