This query is marked as a draft This query has been published by JJMC89.

SQL

AخA
 
select  cat_title
from    category
where   cat_title like '%Republic_of_Macedonia%'
and     cat_title not rlike '^\\d{4}'
;
select  cat_title
from    category
where   cat_title like '%Macedonia%'
and     cat_title not like '%Republic_of_Macedonia%'
and     cat_title not rlike '^\\d{4}'
;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...