这个数据库查询有什么问题
select
abstract_author.name,
title,
affiliation_number,
af_name
from
abs_affiliation_name,
abstract_affiliation,
abstracts_item,
abstract_author,
authors_abstract
where
abstracts_item._id = authors_abstract.abstractsitem_id and
abstract_author._id = authors_abstract.abstractauthor_id and
abstract_affiliation._id = abstract_author._id and
abs_affiliation_name._id = abstracts_item._id
我得到了我的预期结果。但是,有人说这不是推荐的方式或好的做法。你能告诉我写我的查询的推荐方法是什么(我的意思是哪个有连接)?