【问题标题】:Deleting lines in mysql through python通过python删除mysql中的行
【发布时间】:2012-10-10 09:15:31
【问题描述】:

我正在尝试通过python在mysql中写一个表:

我想在 MYSQL 中建表但删除超过 3 行,换句话说我只想要 3 行。例如

emp_no   Num1   Num2   Num3
1          1      2      3
2          1      2      3
3          1      2      3

这些应该删除

4          1      2      3
5          1      2      3
6          1      2      3
.
.
.

我的代码是:

from __future__ import print_function
import mysql.connector
from mysql.connector import errorcode



cnx = mysql.connector.connect(user='',
                              host='localhost')
cursor = cnx.cursor()

DB_NAME = 'DB'
cnx.database = DB_NAME 


TABLES = {}
TABLES['History'] = (
    "CREATE TABLE `History` ("
    "  `emp_no` int(11) NOT NULL AUTO_INCREMENT,"
    "  `Num1` text NOT NULL,"
    "  `Num2` text NOT NULL,"
    "  `Num3` text NOT NULL,"
    "  PRIMARY KEY (`emp_no`)"
    ") ENGINE=InnoDB")


####################33
##
Num1=1
Num2=2
Num3=3

add_employee = ("INSERT INTO History "
               "(Num1, Num2, Num3) "
               "VALUES (%s, %s, %s)")

data_employee = (str(Num1), str(Num2), str(Num3))
### Insert new employee
cursor.execute(add_employee, data_employee)

emp_no = cursor.lastrowid

### Make sure data is committed to the database
cnx.commit()

### *** I use this line for deleting the rows ***
query2 = ("Delete FROM History "
    "WHERE  emp_no >  %s")
cursor.execute(query2, ('3',))


# this part is used for printing the table elements    
query = ("SELECT emp_no, Num1, Num2, Num3 FROM History ")

cursor.execute(query)
#print("last_name")



for (emp_no, Num1, Num2, Num3) in cursor:
 print("{} {} {}".format(
     emp_no, Num1, Num2, Num3))



cursor.close()
cnx.close()
##

例如,当我运行 10 次时,结果总是:

1 1 2
2 1 2
3 1 2

但是当我注释掉该部分时:

query2 = ("Delete FROM History "
        "WHERE  emp_no >  %s")
    cursor.execute(query2, ('3',))

我看到的很有趣:

1 1 2
2 1 2
3 1 2
4 1 2
5 1 2
6 1 2
7 1 2
8 1 2
9 1 2
10 1 2

超过 3 的行在 Mysql 中仍然存在,只是在注释掉删除查询之前没有显示。

那么我怎样才能从 mysql 中完全删除特定的行呢?

【问题讨论】:

  • 这和mysql-error-1064有什么关系?
  • 对不起,我对mysql不太了解,我以为可能是相关的
  • 您是否在此代码的某处收到此错误?如果没有,你应该删除标签

标签: python mysql python-2.7


【解决方案1】:

您似乎需要调用 commit 以使 DELETE 操作永久生效,就像您在 INSERT 操作之后所做的那样。

【讨论】:

    猜你喜欢
    • 2015-07-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-05-17
    • 2013-05-04
    • 2021-03-26
    • 1970-01-01
    • 2018-08-22
    相关资源
    最近更新 更多