Technology Blog | Shares Technology Experiences of Industry Experts | Includes Business Intelligence Systems, Data Warehouse Designing, Database Systems Development, Databases administration, Application Development, ERP implementation Cycle, Programming Languages, and The Common Programming Problems Discussion Forums.
Friday, April 12, 2013
How to add Column in Oracle?
What is table Column?
A table column is a field of an entity that are using to store data, one table have multiple columns. Code:
ALTER TABLE GRN_MASTER
ADD APPROVED_DATE DATE;
ALTER TABLE GRN_MASTER
ADD (CHECKED_ID NUMBER, CHECKED_DATE DATE);
No comments:
Post a Comment
Thank You For Comment