我尝试了不同的SQL命令,例如Year(Getdate())
或sysdate
,但这些命令都不起作用。
我要做的是创建一个列,每当用户填写表单时获取并存储当前年份。但由于某种原因,SQL代码不适用于Oracle Apex(5.0)。
答案 0 :(得分:1)
获取当前年份的oracle查询是:
{{1}}
答案 1 :(得分:0)
扩展上一个答案...
a
答案 2 :(得分:0)
<?php
$count = 0;
$your_repeater = get_field('sub_seminars');
if($your_repeater){
while( have_rows('sub_seminars') ): the_row();
$count++;
$my_field = get_sub_field('start_date');
if ($count == 1) { ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
// populate config with current post settings
presscore_populate_post_config();
presscore_get_template_part( 'theme', 'blog/list/blog-list-post' );
?>
<?php endwhile; ?>
<?php } endwhile; } ?>
使用sql查询并将项目默认粘贴在oracle apex页面项目中,它将返回当前年份。没有得到错误。 check the below image.