sql >> Database teknologi >  >> RDS >> Mysql

hvordan man kontrollerer, at wordpress brugerdefineret tabel er tom eller ej

Prøv dette :)

<?php
function schools_post_function()
{
    global $wpdb;
    $result = $wpdb->get_results("SELECT postid from wp_school_post WHERE `postid` IS NOT NULL");
    if(count($result) == 0)
    {
        echo "not filled";
    }
    else
    {
        echo "filled";

    }
}
?>


  1. ISDATE() Eksempler i SQL Server

  2. ORA-20001 i R12 Indsaml skemastatistik på 11g(FND_HISTOGRAM_COLS)

  3. Eksporter MySQL eller MariaDB-database

  4. Hvordan finder jeg ud af standardserverens tegnsæt i mysql?