I have to insert a few rows at once and every row gets the same value. Is there a way to shorten that query?
$stmt = $db->prepare('
INSERT INTO `tablename`
(`value`) VALUES (?), (?), (?), (?), (?)
');
$stmt->execute(array($value, $value, $value, $value, $value));
INSERTquery looks like. Are you arguing that the SQL standard should be changed?