I have one table and column is c1 pk, c2 not null,c3 not
null and 200 row in it and i add c4 column and value, how
can is possible
Answer Posted / ramprasad.s
hi
Alter Table <Table Name> ADD( <Column name> <data type>)
you can insert values by using <update> with reference
to the existing values of the other columns.
bye
sun_ramprasad@yahoo.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is composite data type in pl sql?
What is a database event trigger?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
Explain the the delete statements in sql?
Can we insert in sql function?
how many values can the set function of mysql take? : Sql dba
What is server name sql?
Why do we use joins?
Which is better trigger or stored procedure?
What is a schema? How is it useful in sql servers?
What are procedures used for?
What are the advantages of pl sql?
When is a declare statement required?
What is the difference between null value, zero, and blank space?
What is pivot query?