F How to create a table in Oracle 10g | CodeTheta

How to create a table in Oracle 10g

April 26, 2021

Code :
CREATE TABLE student(
id NUMBER (10),
first_name VARCHAR2(50),
last_name VARCHAR2(50),
phone NUMBER (10)
);

Output :
Table created.

IDE Used To Test This Code : Oracle 10g.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us. We will reply you as soon as possible.

Post a Comment