PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table t ( id int auto_increment primary key, t datetime(6) ); insert into t values (default, now(6)), (default, now(6)), (default, now(6)), (default, now(6)), (default, now(6)), (default, now(6));
Copy Clear
Copy Format Clear
<?php $sql = <<<SQL select all * from t SQL; $result = $pdo->query($sql)->fetchAll(); print_r($result);
Show:  
Copy Clear