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 / jyothi
alter the table -> alter table <table name> <datatype>
after then u can insert values in that clounm bu using
UPDATE ...
update set column name= value where condition
condition ....where u want to update the value means which
row...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to run 'mysql' commands from a batch file? : Sql dba
Is primary key clustered or nonclustered?
How exception is different from error?
What are inbuilt functions in sql?
How do I partition a table in sql?
Which is faster joins or subqueries?
How can I make sql query run faster?
What is indexing in sql and its types?
Which one is faster ienumerable or iqueryable?
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 how exception handling is done in advance pl/sql?
What is insert command in sql?
Is left join same as inner join?
How to generate a salary slip like jan 1000 1000 feb 1000 2000 ... dec 1000 12000
How do I view stored procedures?