云数据库 GaussDB-案例:建立合适的索引:现象描述

时间:2023-11-01 16:19:21

现象描述

查询所有员工的信息:

1234567
SELECT staff_id,first_name,last_name,employment_id,state_name,city FROM staffs,sections,states,places WHERE sections.section_name='Sales' AND staffs.section_id = sections.section_id AND sections.place_id = places.place_id AND places.state_id = states.state_id ORDER BY staff_id;
support.huaweicloud.com/usermanual-opengauss/opengauss_opti_0067.html