PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
select * from boarding_passes limit 100
Copy Clear
Copy Format Clear
<?php $query = "select count(distinct regexp_replace(seat_no, '[A-Z]', '')) rows_count, count(seat_no) seats_count from seats join aircrafts_data using(aircraft_code) where model->>'en' = 'Boeing 777-300'; "; // get DB version using PDO $stmt = $pdo->prepare($query); $stmt->execute(); $rows = $stmt->fetchAll(PDO::FETCH_NUM); $columns = []; for ($i = 0; $i < $stmt->columnCount(); $i++) { $col = $stmt->getColumnMeta($i); $columns[] = [ 'header'=>$col['name'], 'pdo_type'=>$col['pdo_type'] ]; } echo json_encode([[ 'headers' => $columns, 'data' => $rows ]], JSON_PRETTY_PRINT );
Show:  
Copy Clear