SQL IN 关键字
IN
The IN
command allows you to specify multiple values in a WHERE clause.
IN 运算符是多个 OR 条件的简写形式。
以下 SQL 语句将选择位于“德国”、“法国”和“英国”的所有客户
以下 SQL 语句将选择所有不在“德国”、“法国”或“英国”的客户
以下 SQL 语句将选择与供应商位于相同国家的客户
The IN
command allows you to specify multiple values in a WHERE clause.
IN 运算符是多个 OR 条件的简写形式。
以下 SQL 语句将选择位于“德国”、“法国”和“英国”的所有客户
以下 SQL 语句将选择所有不在“德国”、“法国”或“英国”的客户
以下 SQL 语句将选择与供应商位于相同国家的客户
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]