今天编总成件数据库时,出现的这个问题。
问题原因——有一条查询语句写错了:
select * from subparts_detail
order by is_element,id_self asc
where assemblypart_no = '{$assemblyparts_no}
正确写法:
select * from subparts_detail
where assemblypart_no = '{$assemblyparts_no}
order by is_element,id_self asc