mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
11 lines
479 B
SQL
11 lines
479 B
SQL
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;
|