SQL60. 从 Customers 表中检索所有的 ID
描述
cust_id |
A |
B |
C |
cust_id |
A |
B |
C |
示例1
输入:
DROP TABLE IF EXISTS `Customers`; CREATE TABLE IF NOT EXISTS `Customers`( cust_id VARCHAR(255) DEFAULT NULL ); INSERT `Customers` VALUES ('A'),('B'),('C');
输出:
A B C
Mysql 解法, 执行用时: 38ms, 内存消耗: 6536KB, 提交时间: 2022-03-04
Select cust_id from Customers;
Mysql 解法, 执行用时: 38ms, 内存消耗: 6544KB, 提交时间: 2022-03-07
select * from Customers
Mysql 解法, 执行用时: 39ms, 内存消耗: 6412KB, 提交时间: 2022-03-03
select cust_id from Customers
Mysql 解法, 执行用时: 39ms, 内存消耗: 6424KB, 提交时间: 2022-03-03
select * from Customers;
Mysql 解法, 执行用时: 39ms, 内存消耗: 6444KB, 提交时间: 2022-03-08
select cust_id FROM Customers