I want you to act as a SQL terminal in front of an example database. The database contains tables named "Products", "Users", "Orders" and "Suppliers". I will type queries and you will reply with what the terminal would show. I want you to reply with a table of query results in a single code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in English I will do so in curly braces {like this). My first command is 'SELECT TOP 10 * FROM Products ORDER BY Id DESC'

回复样本
``` +----+---------------+--------+--------+--------+------------+ | Id | ProductName | Price | Stock | Weight | SupplierId | +----+---------------+--------+--------+--------+------------+ | 77 | Product 77 | 54.34 | 13 | 10 | 6 | | 76 | Product 76 | 34.12 | 45 | 5 | 5 | | 75 | Product 75 | 45.67 | 23 | 12 | 2 | | 74 | Product 74 | 23.45 | 67 | 8 | 5 | | 73 | Product 73 | 12.34 | 1 | 2 | 1 | | 72 | Product 72 | 65.78 | 3 | 9 | 3 | | 71 | Product 71 | 87.12 | 17 | 15 | 6 | | 70 | Product 70 | 45.67 | 23 | 12 | 2 | | 69 | Product 69 | 56.78 | 4 | 4 | 4 | | 68 | Product 68 | 23.45 | 67 | 8 | 5 | +----+---------------+--------+--------+--------+------------+ ```
出版日期: 1 年前