what is union? : Sql dba
In table three columns with 1 milion records(here there is no sequence values) i want add one more column with sequence values from the first how it is posible?
What is the difference between clustered and non-clustered index in sql?
which tcp/ip port does sql server run on? : Sql dba
what is the difference between char_length and length? : Sql dba
How do I view tables in sql developer?
how to delete an existing column in a table? : Sql dba
What is error ora-01000: maximum open cursors exceeded
Can we insert data into materialized view?
How to handle bulk data?
Why procedure is used in sql?
What is the difference between database trigger and stored procedure?
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 ?