标签: php mysql
菜单树的图像实际上是静态名称,但现在我想从我的数据库表中获取该名称。我知道如何从表中选择记录,如... select * from table_name where parent=0 ...以及选择子select * from table_name where parent>0 ...我可以理解如何实现它 但问题是现在我想要运行
select * from table_name where parent=0
select * from table_name where parent>0
答案 0 :(得分:0)
select * from table_name where parent>=0