I am using TOAD 11.0.6 and the Oracle database version is 11gR2
See the scenarios below that I can execute with F5 or by clicking the green arrow as shown in the attached screenshot
CREATE TABLE calculate (col NUMBER);
ALTER TABLE calculate
ADD (cal_method VARCHAR2(50), remarks VARCHAR2(500));
SELECT * FROM calculate;

source
share