Leser: 1
![]() |
|< 1 2 >| | ![]() |
19 Einträge, 2 Seiten |
1
2
3
SELECT content from config_content_ids
WHERE content r like '^[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+$'
ORDER BY content;
1
2
3
SELECT content from config_content_ids
WHERE content r like '^[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+$'
ORDER BY content;
SELECT content FROM config_content_ids WHERE content REGEXP '^([A-Za-z0-9_]+\\.){3}[A-Za-z0-9_]+$' ORDER BY content;
![]() |
|< 1 2 >| | ![]() |
19 Einträge, 2 Seiten |