In table three columns with 1 milion records(here there is
no sequence values) i want add one more column with
sequence values from the first how it is posible?
Answer Posted / shekharjchandra
Hi
That's a simple one . (if table is tab1)
1. Add column first
ALTER TABLE tab1 add col1 number ;
2. Update the col1 of tab1
UPDATE tab1 SET col1=ROWNUM.
This will populate all the rows in sequential numbers.
Hope this solves u r problem
regards
JC
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
What are transaction and its controls?
How to add, remove, modify users using sql?
What is difference between hql and sql?
Explain unique key in sql.
what is a database lock ? : Sql dba
What is the difference between unique and primary key constraints?
how to start mysql server? : Sql dba
How is use pl and sql?
What is sql and its types?
what is try_catch block in procedure
What is the difference between left join and right join?
What are the most important ddl statements in sql?
What do you mean by dbms? What are its different types?
What is a scalar value in sql?
Can instead of triggers be used to fire once for each statement on a view?