-- 查询a'select ''表
select * from tbl_a where name = '--C001;C002'; -- 注释1

-- 查询b表
# 另外的注释
select * from tbl_b where name = '--C002;

--C003'; -- 注释2

-- 嵌套查询
select * from tbl_c where id not in (
	select id from tbl_d where name = '--C003;C004a' # 注释3
); select * from tbl_e;
