ClickHouse/tests/queries/0_stateless/02045_like_function.sql

11 lines
479 B
MySQL
Raw Normal View History

2021-10-15 17:00:08 +00:00
SELECT 'r\\a1bbb' LIKE '%r\\\\a1%bbb%' AS res;
WITH lower('\RealVNC\WinVNC4 /v password') as CommandLine
SELECT
CommandLine LIKE '%\\\\realvnc\\\\winvnc4%password%' as t1,
CommandLine LIKE '%\\\\realvnc\\\\winvnc4 %password%' as t2,
CommandLine LIKE '%\\\\realvnc\\\\winvnc4%password' as t3,
CommandLine LIKE '%\\\\realvnc\\\\winvnc4 %password' as t4,
CommandLine LIKE '%realvnc%winvnc4%password%' as t5,
CommandLine LIKE '%\\\\winvnc4%password%' as t6;