| 12345678910111213141516171819 |
- select count(*) as count from /test/enum where v_enum = 1
- /**
- output()
- matchcount("count", 1, 1)
- **/
- ;
- select count(*) as count from /test/enum where v_enum = 'network'
- /**
- matchcount("count", 1, 1)
- **/
- ;
- select count(*) as count from /test/enum where v_enum = '软件'
- /**
- matchcount("count", 1, 1)
- **/
- ;
|