我有一个查询 -
(`mg_profesional_category`.`pc_active` * `mg_activity`.`ac_active`) AS `pc_active`
在此查询中,star(*
)的含义是什么。
我的完整查询 -
select `mg_profesional_category`.`pc_code` AS `pc_code`,
`mg_profesional_category`.`pc_pt_code` AS `pc_pt_code`,
`mg_profesional_category`.`pc_code` AS `pc_pc_code`,
NULL AS `pc_sp_code`,
`mg_profesional_category_language`.`pl_name` AS `pc_name`,
`mg_profesional_category_language`.`pl_ln_code` AS `pc_ln_code`,
'profesional' AS `pc_type`,
(`mg_profesional_category`.`pc_active` * `mg_activity`.`ac_active`) AS `pc_active`,
`mg_profesional_category`.`pc_delete` AS `pc_delete` from
(((`mg_profesional_category` join `mg_profesional_category_language` on((`mg_profesional_category`.`pc_code` = `mg_profesional_category_language`.`pl_pc_code`)))
left join `mg_specialties` on((`mg_profesional_category`.`pc_code` = `mg_specialties`.`sp_pc_code`))) join `mg_activity` on((`mg_activity`.`ac_pc_code` = `mg_profesional_category`.`pc_code`))) where isnull(`mg_specialties`.`sp_code`)