我正在尝试创建一个轮播。主轮播中将有一个轮播。问题是当我创建轮播时,第一个轮播工作正常。但是第二个轮播不会加载子轮播。
这是第一个轮播,我看起来像这个轮播。 This is the first carousel and It's working fine
但是当我去下一个转盘时。然后右侧转盘无法正常工作。 This is the image that is not working
我正在尝试创建具有Repeater字段的Elementor小部件。这是代码。
SQL> desc my_test
Name Null? Type
----------------------------------------- -------- ----------------------------
C1 NUMBER
C2 NUMBER
SQL> select * from my_test ;
C1 C2
---------- ----------
1 1
1 1
2 2
SQL> with main_query as ( select c1 , c2 from my_test )
select a , b
from
( select count(*) as a from main_query ) ,
( select count(*) as b from ( select distinct * from main_query ) )
/ 2 3 4 5 6
A B
---------- ----------
3 2
SQL> with main_query as ( select c1 , c2 from my_test )
select case when a = b then 'OK' else 'ERROR' end as result
from
( select count(*) as a from main_query ) ,
( select count(*) as b from ( select distinct * from main_query ) )
/
RESUL
-----
ERROR