SELECT count(*)FROM表WHERE列ilike'%/%';
给我包含"/"的值的数量
如何为"\"做同样的事情?
SELECT count(*) FROM table WHERE column ILIKE '%\\\\%';