"not like" 在 DolphinDB 中 SQL

"not like" in DolphinDB SQL

t=table(`Gold`GoldMines`Silver`SilverMines as id, 1 2 3 4 as x);
select * from t where id not like "%Silver%";

它returns以下错误信息:

Function not is not a binary operator

有人知道我能用它做什么吗?

不支持not like。使用不如下:

select * from t where not id like "%Silver%";