"content":"<p>Table: <code>SalesPerson</code></p>\n\n<pre>\n+-----------------+---------+\n| Column Name | Type |\n+-----------------+---------+\n| sales_id | int |\n| name | varchar |\n| salary | int |\n| commission_rate | int |\n| hire_date | date |\n+-----------------+---------+\nsales_id is the primary key column for this table.\nEach row of this table indicates the name and the ID of a salesperson alongside their salary, commission rate, and hire date.\n</pre>\n\n<p> </p>\n\n<p>Table: <code>Company</code></p>\n\n<pre>\n+-------------+---------+\n| Column Name | Type |\n+-------------+---------+\n| com_id | int |\n| name | varchar |\n| city | varchar |\n+-------------+---------+\ncom_id is the primary key column for this table.\nEach row of this table indicates the name and the ID of a company and the city in which the company is located.\n</pre>\n\n<p> </p>\n\n<p>Table: <code>Orders</code></p>\n\n<pre>\n+-------------+------+\n| Column Name | Type |\n+-------------+------+\n| order_id | int |\n| order_date | date |\n| com_id | int |\n| sales_id | int |\n| amount | int |\n+-------------+------+\norder_id is the primary key column for this table.\ncom_id is a foreign key to com_id from the Company table.\nsales_id is a foreign key to com_id from the SalesPerson table.\nEach row of this table contains information about one order. This includes the ID of the company, the ID of the salesperson, the date of the order, and the amount paid.\n</pre>\n\n<p> </p>\n\n<p>Write an SQL query to report the names of all the salespersons who did not have any orders related to the company with the name <strong>"RED"</strong>.</p>\n\n<p>Return the result table in <strong>any order</strong>.</p>\n\n<p>The query result format is in the following example.</p>\n\n<p> </p>\n<p><strong>Example 1:</strong></p>\n\n<pre>\n<strong>Input:</strong> \nSalesPerson table:\n+----------+------+--------+-----------------+------------+\n| sales_id | name | salary | commission_rate | hire_date |\n+----------+------+--------+-----------------+------------+\n| 1 | John | 100000 | 6 | 4/1/2006 |\n| 2 | Amy | 12000 | 5 | 5/1/2010 |\n| 3 | Mark | 65000 | 12 | 12/25/2008 |\n| 4 | Pam | 25000 | 25 | 1/1/2005 |\n| 5 | Alex | 5000 | 10 | 2/3/2007 |\n+----------+------+--------+-----------------+------------+\nCompany table:\n+--------+--------+----------+\n| com_id | name | city |\n+--------+--------+----------+\n| 1 | RED | Boston |\n| 2 | ORANGE | New York |\n| 3 | YELLOW | Boston |\n| 4 | GREEN | Austin |\n+--------+--------+----------+\nOrders table:\n+----------+------------+--------+----------+--------+\n| order_id | order_date | com_id | sales_id | amount |\n+----------+------------+--------+----------+--------+\n| 1 | 1/1/2014 | 3 | 4 | 10000 |\n| 2 | 2/1/2014 | 4 | 5 | 5000 |\n| 3 | 3/1/2014 | 1 | 1 | 50000 |\n| 4 | 4/1/2014 | 1 | 4 | 25000 |\n+----------+------------+--------+----------+--------+\n<strong>Output:</strong> \n+------+\n| name |\n+------+\n| Amy |\n| Mark |\n| Alex |\n+------+\n<strong>Explanation:</strong> \nAccording to orders 3 and 4 in the Orders table, it is easy to tell that only salesperson John and Pam have sales to company RED, so we report all the other names in the table salesperson.\n</pre>\n",
"translatedTitle":"销售员",
"translatedContent":"<p>表: <code>SalesPerson</code></p>\n\n<pre>\n+-----------------+---------+\n| Column Name | Type |\n+-----------------+---------+\n| sales_id | int |\n| name | varchar |\n| salary | int |\n| commission_rate | int |\n| hire_date | date |\n+-----------------+---------+\nSales_id是该表的主键列。\n该表的每一行都显示了销售人员的姓名和ID,以及他们的工资、佣金率和雇佣日期。\n</pre>\n\n<p> </p>\n\n<p>表: <code>Company</code></p>\n\n<pre>\n+-------------+---------+\n| Column Name | Type |\n+-------------+---------+\n| com_id | int |\n| name | varchar |\n| city | varchar |\n+-------------+---------+\nCom_id是该表的主键列。\n该表的每一行都表示公司的名称和ID,以及公司所在的城市。\n</pre>\n\n<p> </p>\n\n<p>表: <code>Orders</code></p>\n\n<pre>\n+-------------+------+\n| Column Name | Type |\n+-------------+------+\n| order_id | int |\n| order_date | date |\n| com_id | int |\n| sales_id | int |\n| amount | int |\n+-------------+------+\nOrder_id是该表的主键列。\ncom_id是Company表中com_id的外键。\nsales_id是来自销售员表com_id的外键。\n该表的每一行包含一个订单的信息。这包括公司的ID、销售人员的ID、订单日期和支付的金额。\n</pre>\n\n<p> </p>\n\n<p>编写一个SQL查询,报告没有任何与名为 <strong>“RED”</strong> 的公司相关的订单的所有销售人员的姓名。</p>\n\n<p>以 <strong>任意顺序</strong> 返回结果表。</p>\n\n<p>查询结果格式如下所示。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre>\n<strong>输入:</strong> \nSalesPerson 表:\n+----------+------+--------+-----------------+------------+\n| sales_id | name | salary | commission_rate | hire_date |\n+----------+------+--------+-----------------+------------+\n| 1 | John | 100000 | 6 | 4/1/2006 |\n| 2 | Amy | 12000 | 5 | 5/1/2010 |\n| 3 | Mark | 65000 | 12 | 12/25/2008 |\n| 4 | Pam | 25000 | 25 | 1/1/2005 |\n| 5 | Alex | 5000 | 10 | 2/3/2007 |\n+----------+------+--------+-----------------+------------+\nCompany 表:\n+--------+--------+----------+\n| com_id | name | city |\n+--------+--------+----------+\n| 1 | RED | Boston |\n| 2 | ORANGE | New York |\n| 3 | YELLOW | Boston |\n| 4 | GREEN | Austin |\n+--------+--------+----------+\nOrders 表:\n+----------+------------+--------+----------+--------+\n| order_id | order_date | com_id | sales_id | amount |\n+----------+------------+--------+----------+--------+\n| 1 | 1/1/2014 | 3 | 4 | 10000 |\n| 2 | 2/1/2014 | 4 | 5 | 5000 |\n| 3 | 3/1/2014 | 1 | 1 | 50000 |\n| 4 | 4/1/2014 | 1 | 4 | 25000 |\n+----------+------------+--------+----------+--------+\n<strong>输出:</strong> \n+------+\n| name |\n+------+\n| Amy |\n| Mark |\n| Alex |\n+------+\n<strong>解释:</strong>\n根据表 <code>orders</code> 中的订单 '3' 和 '4' ,容易看出只有 'John' 和 'Pam' 两个销售员曾经向公司 'RED' 销售过。\n所以我们需要输出表 <code>salesperson</code> 中所有其他人的名字。</pre>\n",