Question:
How can I set up a Query to display the last 15 records?
Solution:
To do so, you must enable SQL direct edition, and use SQL’s TOP command set with the number of values that will return (in this case, 15).
Example:
SELECT TOP 15 VariableName
FROM TableName