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 / manoj
1.
alter table <table_name>
add column<col_name> <data_type>[not null];
2.
for inserting values
Depends: if u have data in another table than u can insert
by making small packege (using cursor)
OR :u can also sequence to insert
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is java sql connection?
What are sql injection vulnerabilities?
explain access control lists. : Sql dba
What is before trigger?
how to include numeric values in sql statements? : Sql dba
What does <> sql mean?
What do you mean by “trigger” in sql?
What is where clause in sql?
explain the delete statements in sql
How do sql triggers work?
Which is faster view or stored procedure?
How many sql statements are used?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What is the difference between a primary key and a clustered index?
How do I view tables in mysql?