簡單的更新查詢花費了太多時間。優化簡單的mysql更新查詢
我需要優化此查詢。沒有加入,它不應該花很多時間。
簡單的更新查詢低於:
UPDATE need
SET `column7` = "in ABC and in", # type: text
`column9` = "in Abc and in ", # type: text
`column15` = "", #type: text
`column32` = "0" #type: tinyint(1)
WHERE id = "36851"
Field Type Collation
-------------------------- ------------------- ---------------
id bigint(20) unsigned (NULL)
column01 varchar(320) utf8_unicode_ci
column02 varchar(1024) utf8_unicode_ci
column03 longblob (NULL)
.
.
.
.
column32 tinyint(1) (NULL)
column33 tinyint(3) unsigned (NULL)
請提出好的建議。
我沒有看到任何明顯您的表格定義中存在問題。你的桌子上有多少行?什麼是mysql版本? – 2012-03-02 07:59:43