Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Pascal's triangle or binomial coefficients

146850Nov 14 2005 — edited May 3 2008
<font color="red">you know Pascal's triangle like below.</font>

1
11
121
1331
14641
...
...

my question is to find out a query giving nth sequence,
that is to say,

when n=1, that query yields
1

when n=2
1
1

when n=3
1
2
1

when n=4
1
3
3
1

...
...

(oh, but you have NOT to use any subqueries)


for more SQL problems & questions, please visit
http://cafe.daum.net/oraclesqltuning

Comments

User_LYSW0

I'm facing the same issue after 20.2 upgrade as well..

Answer

Hi,
Thanks for reporting this, and apologies for the delay in responding. This was easy to reproduce, and I've filed bug #32122067 to track it. We'll also update the thread with any workaround, when we have it.
Regards,
Anthony

Marked as Answer by tvbishan · Nov 6 2020
Tim Kimberl-Oracle

Until this is patched, here is a temporary bit of css you can add to your app to fix this issue.

.a-GV-columnItem .apex-item-group--auto-complete {
  display: flex;
}

.a-GV-columnItem .apex-item-group--auto-complete .oj-form-control,
.a-GV-columnItem .apex-item-group--auto-complete .oj-inputsearch-choice {
  display: flex;
  flex-grow: 1;
}

Thanks,
Tim

User_Y6MKJ
Hello, I would like to know how I apply the code above, 
through the page itself in the CSS part and call the class in the Css Classes of the column, 
or in the General theme?

Sincerely, Mariangela

Leon_M

Copy and paste the code in your Page Inline CSS

User_Y6MKJ

Thank you!

Leon_M

@tim-kimberl-oracle Thanks for the fix!
Can you also have a look at another issue with autocomplete please:
https://community.oracle.com/tech/developers/discussion/4483380/apex-20-2-autocomplete-issue-need-solution#latest

1 - 7
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on May 31 2008
Added on Nov 14 2005
29 comments
8,962 views