HOW TO PRINT
*
**
***
****
*****
BY USING SQL QUERY? (MAY BE USING SCRIPT)
Answer Posted / shrikant tyagi in nucleus soft
HOW TO PRINT * ** *** **** ***** BY USING SQL QUERY? (MAY
BE USING SCRIPT)
this is using script;
declare
type a1 is table of varchar2(100);
a a1;
b varchar2(100);
begin
select lpad('*',rownum,'*') bulk collect into a from
lea_agreement_dtl where rownum < 5;
for i in 1..a.count
loop
b:=b||' '||a(i);
end loop;
dbms_output.put_line(b);
end;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to look at the current sql*plus system settings?
What is a nested table in word?
What is difference between nchar and nvarchar?
What is sql data?
What is sql injection vulnerability?
Can you selectively load only those records that you need? : aql loader
What is the use of nvl function?
what is query cache in mysql? : Sql dba
What is asqueryable?
Does pl sql work in mysql?
When sql appeared?
What types of commands can be executed in sql*plus?
How is data stored in sql?
What are all the different normalizations?
What is view explain with example?