题解 | #从 Customers 表中检索所有的 ID#
从 Customers 表中检索所有的 ID
https://www.nowcoder.com/practice/009199576d094b56807a8368058841ee
SELECT cust_id FROM Customers #FROM 后面的 Customer 区分大小写, 但是SELECT后的 cust_id 不区分
从 Customers 表中检索所有的 ID
https://www.nowcoder.com/practice/009199576d094b56807a8368058841ee
SELECT cust_id FROM Customers #FROM 后面的 Customer 区分大小写, 但是SELECT后的 cust_id 不区分
相关推荐