if we give update table_name set column_name= default.
what will happen?
its given in pl sql block.what will hapen?
Answers were Sorted based on User's Feedback
Answer / manoj
It will fill the default value through out that column
by null
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / gopal
If default is speceified for the table then it will update
with default value. Else it will update null values
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / guest
IT WILL UPDATE NULL IN THE COLUMN IF YOU NOT PROVIDE ANY
VALUE.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ehtesham malik
if you set default value then it will update column with
null value.
Is This Answer Correct ? | 1 Yes | 1 No |
What is nvarchar max in sql?
How many sql are there?
What are properties of the transaction?
Are sql connections encrypted?
What is the difference between mdf and ndf files?
What are the 3 modes of parameter?
What is a table partition?
Explain what is an index?
What are the built in functions of sql?
declare lowerl number:= 1; upperl number:= 3; num varchar2(10); begin for i into lowerl..upperl loop num:=num||to_char(lowerl); if i=3 then upperl:=5; end loop; message(num); What will be the output ?
what is the difference between group by and order by in sql? : Sql dba
How sql query is executed?