分析
关键词:select
搜索所有列:select * from [table]
注释方法:\
- 单行---使用符号[--]或者[#]
- 多行---使用符号[/.../]
代码
select * from Customers
-- 仅检索顾客ID
# 另一种注释方法
/*
多行注释方法
select cust_id from Customers
*/
分析
关键词:select
搜索所有列:select * from [table]
注释方法:\
代码
select * from Customers
-- 仅检索顾客ID
# 另一种注释方法
/*
多行注释方法
select cust_id from Customers
*/