TOP n is not supported in Oracle, so you have to use WHERE 1 = 0. Personally, I use WHERE 0 = 1, but that's just my preference. It comes in handy when you want to clone a table without the data.
CREATE TABLE CLETUS.EMP AS
SELECT *
FROM SCOTT.EMP
WHERE 0 = 1;