diff --git a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82878-RemovedFieldNoCacheInDatabaseTablePages.rst b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82878-RemovedFieldNoCacheInDatabaseTablePages.rst
index f27e96ea1d4b3a1b899c2551f56536f560ca0a5a..86a4e69dc78f1ea8b3c654960566f9b89d1b1f2d 100644
--- a/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82878-RemovedFieldNoCacheInDatabaseTablePages.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.0/Breaking-82878-RemovedFieldNoCacheInDatabaseTablePages.rst
@@ -37,7 +37,12 @@ TypoScript through :ts:`config.no_cache = 1` in conjunction with a condition on
 However, it is better to set a very low cache timeout, or investigate why caching is configured
 wrongly in an extension or plugin.
 
-Also, use the SQL query to quickly check if your installation is even using this option at all.
-If not, it is not necessary to migrate anything.
+Also, use the following SQL query to quickly check if your installation is even using this option at all.
+If not, it is not necessary to migrate anything:
 
-.. index:: Database, Frontend, NotScanned
\ No newline at end of file
+.. code-block:: sql
+
+  SELECT uid,title FROM pages WHERE no_cache = 1
+
+
+.. index:: Database, Frontend, NotScanned