Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

अपडेट क्वेरी के लिए स्टेटमेंट कैसे तैयार करें?

एक UPDATE एक डालने या चयन के समान काम करता है। बस सभी चरों को ? . से बदलें ।

$sql = "UPDATE Applicant SET phone_number=?, street_name=?, city=?, county=?, zip_code=?, day_date=?, month_date=?, year_date=? WHERE account_id=?";

$stmt = $db_usag->prepare($sql);

// This assumes the date and account_id parameters are integers `d` and the rest are strings `s`
// So that's 5 consecutive string params and then 4 integer params

$stmt->bind_param('sssssdddd', $phone_number, $street_name, $city, $county, $zip_code, $day_date, $month_date, $year_date, $account_id);
$stmt->execute();

if ($stmt->error) {
  echo "FAILURE!!! " . $stmt->error;
}
else echo "Updated {$stmt->affected_rows} rows";

$stmt->close();



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL, PostgreSQL और Redis™ के लिए स्केलग्रिड DigitalOcean समर्थन अब उपलब्ध है

  2. Ubuntu 14.04 पर phpMyAdmin के साथ MySQL कैसे स्थापित करें?

  3. मुझे अपने विंडोज़ कंप्यूटर पर my.cnf नहीं मिल रहा है

  4. MySQL ABS () फ़ंक्शन - किसी संख्या का निरपेक्ष मान लौटाएं

  5. MySQL स्थापित करें:त्रुटि:मणि देशी एक्सटेंशन बनाने में विफल