There are 12 tables every month of the year, through this query a list of these tables is displayed, but you need to sort them by date ie. January, February, etc. For now, it is displayed only in alphabetical order, how to strictly indicate in what order the tables should be displayed.
SELECT mSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") And (Left$([Name],1)<> "_") And (MSysObjects.Type)=5 So does not work
SELECT mSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1) <> "~" ) And (Left$([Name],1) <> "_" ) And (MSysObjects.Type)=5 ORDER BY FIELD (mSysObjects.Name, "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь")