Begin
For j in 4403201000 .. 4403202000
Loop
If mod (j, 100) = 0 then
Dbms_output.put_line (j);
End if;
End loop;
End;
what will be the output of this question
Answer Posted / venkat
this is out put aboue loop
4403201000
4403201100
4403201200
4403201300
4403201400
4403201500
4403201600
4403201700
4403201800
4403201900
4403202000
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?
Does a join table need a primary key?
Why trigger is used in sql?
What is scalar data type in pl sql?
how to check myisam tables for errors? : Sql dba
What are the different sql commands?
What is linq to sql?
What are the basic techniques of indexing?
Why do we use procedures in pl sql?
How many tables can a sql database have?
Explain the difference between 'between' & 'and' operators in sql
Which are sql * plus commands?
What is a .db file?
What is the clause we need to add in function body to return variable?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba