Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wählen Sie mehrere Zeilen mit unterschiedlichen Werten aus derselben Tabelle aus

So einfach wie es ist..

SELECT id,option_key,option_value FROM options

oder

SELECT * FROM options

Sie können dies mit PDO tun

    $dbh = new PDO("mysql:dbname=pages;host=localhost", "username", "password");
    $sth = $dbh->prepare('SELECT id,option_key,option_value FROM options');
    $sth->execute();