SQL*Plus
To create a table using the Oracle SQL*Plus interpreter, type the sqlplus command and enter your Oracle account name and password, then:
SQL> create table students (
2 login varchar(10),
3 lastname varchar(20),
4 dept varchar(5)
5 ) ;
Table created
In this interpreter commands are terminated by a semicolon.