■【アンケート】産休・育休はありますか?
-
query('SELECT COUNT(id) FROM answers');
$total_votes = $sth->fetchColumn();
$sth = $pdo->query('SELECT answer, COUNT(id) AS votes FROM answers GROUP BY answer ORDER BY COUNT(id) DESC');
// var_dump($row);
while ($row = $sth->fetch(PDO::FETCH_ASSOC)) {
$percent = 0;
$percent = round($row['votes'] / $total_votes * 100, 2);
$option_name = '';
$sth2 = $pdo->query('SELECT option_name FROM options WHERE id = ?');
$sth2->execute(array($row['answer']));
$option_name = $sth2->fetchColumn();
// var_dump($option_name);
echo "\t\t\t" . '
- 投票数: ' . "\n";
echo "\t\t\t\t" . '' . $row['votes'] . '票 「' . $option_name . "」\n";
echo "\t\t\t\t" . '
' . "\n"; echo "\t\t\t\t" . ' ' . "\n";
}
} catch (PDOException $e){
var_dump($e->getMessage());
}
?>
※一般企業の平均(平成24年度雇用均等基本調査)
育休制度あり | 72.4% |
---|---|
育休取得者あり | 30.6% |
産休あり | 産休については、労基法で取得が義務付けられているため、取得率についての統計なし |
6/18 11:19 いつもお世話になります。ありがとうございます。 内は両...
いつもお世話になります。ありがとうございます。
内は両方ともあります。