列表

详情


SQL62. 检索所有列

描述

现在有Customers 表(表中含有列cust_id代表客户id,cust_name代表客户姓名)
cust_id
cust_name
a1
andy
a2 ben
a3 tony
a4 tom
a5
an
a6
lee
a7 hex
【问题】需要编写 SQL语句,检索所有列。
【示例结果】
返回所有列cust_id和cust_name。
cust_id
cust_name
a1
andy
a2 ben
a3 tony
a4 tom
a5
an
a6
lee
a7 hex

示例1

输入:

DROP TABLE IF EXISTS `Customers`;
CREATE TABLE IF NOT EXISTS `Customers`(
	cust_id VARCHAR(255) NOT NULL COMMENT '客户id',
	cust_name VARCHAR(255) NOT NULL COMMENT '客户姓名'
);
INSERT `Customers` VALUES ('a1','andy'),('a2','ben'),('a3','tony'),('a4','tom'),('a5','an'),('a6','lee'),('a7','hex');

输出:

a1|andy
a2|ben
a3|tony
a4|tom
a5|an
a6|lee
a7|hex

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

Mysql 解法, 执行用时: 38ms, 内存消耗: 6548KB, 提交时间: 2022-03-05

select * from Customers 
#select cust_id from Customers 

Mysql 解法, 执行用时: 38ms, 内存消耗: 6628KB, 提交时间: 2022-03-03

select cust_id, cust_name from Customers;

Mysql 解法, 执行用时: 39ms, 内存消耗: 6372KB, 提交时间: 2022-03-07

SELECT * FROM Customers 

Mysql 解法, 执行用时: 39ms, 内存消耗: 6392KB, 提交时间: 2022-03-04

select cust_id, cust_name from Customers 

Mysql 解法, 执行用时: 39ms, 内存消耗: 6432KB, 提交时间: 2022-03-05

select *
from Customers
/*
select cust_id from Customers
*/

上一题