Load TYPO3 content element via TypoScript

Render all content elements of a page (filter by page uid)

lib.contentPage = CONTENT
lib.contentPage{
    table = tt_content
    select {
        pidInList = 999
        orderBy = sorting
        where = colpos=0
        languageField = sys_language_uid
        begin= 0
    }
    renderObj < tt_content
}

Render single content element by (filter by content element uid)

lib.contentMiddle.550 = RECORDS
lib.contentMiddle.550 {
    source = 5962
    dontCheckPid = 1
    tables = tt_content
}