您好,登錄后才能下訂單哦!
這篇文章主要介紹python中mysql語句怎么寫,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
python中mysql語句:
1、刪除語句,根據條件刪除數據
def DeleteInventory(self,Delete_goodsID): DeleteInventory_sql=("DELETE FROM inventoryinformation WHERE goodsID= %s") asd = self.conn.execute(DeleteInventory_sql,Delete_goodsID) return asd
這里 用 %s 代替了傳入的參數 Delete_goodsID 然后用其父類BaseBusiness 里面的 execute 方法,來執行SQL語句
2、修改語句,根據條件修改數據
manager_sql=("update manager set managerPassword= %s where managerID= %s ")
3、查詢語句,根據條件查詢所需的數據
select_sql=("select managerID,managerPassword from manager where managerID= %s and managerPassword= %s ")
4、添加語句,根據條件添加數據
sql=("INSERT INTO customer(customerID,customerName,customerAddress,customerBankAccount,customerPayee,""customerAccountNumber,customerContacts,companyTelephone,contactPhone,customerFax) VALUES(%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)")
這樣,基本的增刪改查都有了,而且SQL語句中因為是傳入的參數,可以避免一些SQL注入問題,還是比較好的
以上是python中mysql語句怎么寫的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。