为什么此时间表无法序列化?

时间:2019-03-17 08:19:45

标签: mysql database transactions rdbms

我正在数据库课程中查看上一个考试题。该解决方案说,以下时间表不可序列化。我不知道如何,这是我的主意。

附表2:

<?php 
                $query = new WP_Query(array(
                    'post_type'     => 'intro',
                    'post_per_page' => 3,
                ));
            ?>
            <?php while($query->have_posts()): $query->the_post(); ?>
            <!-- Intro Box -->
            <div class="intro_box d-flex flex-column align-items-center justify-content-center text-center">
                <?php the_post_thumbnail(); ?>
                <div class="intro_box_title"><h3><?php the_title(); ?></h3></div>
                <div class="intro_box_text">
                    <?php the_content(); ?>
                </div>
            </div>
            <?php endwhile; ?>
  • T3:R(A)和T4:R(A)没有冲突。
  • T4:R(A)和T3:W(B)是 没有冲突。
  • T3:W(B)和T4:W(B)是冲突。

这将产生没有循环的图形。从而使其可序列化,对吗?我想念什么?

0 个答案:

没有答案
相关问题