sql >> Database teknologi >  >> RDS >> Mysql

PHP MySQL - Sådan indsætter du standardværdi i en forberedt erklæring

Jeg havde det samme problem, så jeg tilpassede dette svar https://stackoverflow.com/a/13867665/ 1251063 til php udarbejdet erklæring:

if(!($stmt = $this->conn->prepare("INSERT INTO mytable (myfield) VALUES (IFNULL(?,DEFAULT(myfield)))"))){
    throw new Exception("Prepare failed: (" . $this->conn->errno . ") " . $this->conn->error);
}

if(!($stmt->bind_param("s",$myfield))) { //$myfield is a variable that can be null, if so the default value for such field will be inserted
    throw new Exception("Bind_param failed: (" . $this->conn->errno . ") " . $this->conn->error);
}

if(!$stmt->execute()) {
    throw new Exception("Execute failed: (" . $stmt->errno . ") " . $stmt->error);
}


  1. JSON_UNQUOTE() – Fjern citater fra et JSON-dokument i MySQL

  2. Hvad er betydningen af ​​grave accent (AKA backtick) citerede karakterer i MySQL?

  3. MAX vs Top 1 - hvad er bedre?

  4. Et Performance Cheat Sheet til PostgreSQL