## noempty
* [ ] 功能說明:表記錄不為空執行操作
* [ ] 適用范圍:全局使用
* [ ] 基本語法:
```
{SEO:noempty table="user_banner" filed ="" where="belong_to=>0" order="" limit ="" id="vo"}
{/SEO:noempty}
```
**參數說明**:
* [ ] table='' 表名
* [ ] where='' where條件,以key=>val格式編寫
* [ ] field='' 表字段,留空默認為*
* [ ] order='' 排序
* [ ] limit='' 條數
如PC端有導航圖,顯示查找到的導航圖片:
```
{SEO:noempty table='user_banner' where="belong_to=>0" limit='4' id="vo"}
<div class="swiper-slide">
<img src="http://t7.baidu.com/it/u=f=jpeg?sec=1591172742&t=470fa0b6" width="1920"></div>
{/SEO:noempty}
```