console/content/view/code_notebook_cell_latest.sql

SELECT 'breadcrumb' AS component;
    SELECT 'Home' as title, '/' as link;
    SELECT 'Console' as title, '/console/index.sql' as link;
    SELECT 'Content' as title;
    SELECT 'code_notebook_cell_latest view' as title;

    SELECT 'title' AS component, 'Latest Code Notebook Cells' as contents;
    SELECT 'table' AS component, 1 AS search, 1 AS sort;
    SELECT notebook_name AS "Notebook",
           cell_name AS "Cell Name", 
           LEFT(interpretable_code, 100) || '...' AS "Code Preview",
           created_at AS "Created"
      FROM code_notebook_cell_latest
     ORDER BY created_at DESC;