0

可能看起来像一个愚蠢的问题,但我不想在这里搞砸

会将 "update table SET field = LOWER(field)"表格上的每个字段都转为小写?(并且什么也不做,否则,对吧?)

谢谢!

4

5 回答 5

1

If you don't want to mess it BACK UP FIRST. We could be an evil bunch of trolls!

It will also cause any update trigger on the table to run.

于 2011-04-01T21:09:55.333 回答
0

Right. But you are working with two different fields in your query.

于 2011-04-01T21:07:49.553 回答
0
update table SET field = LOWER(field) WHERE field LIKE '%'
于 2012-12-17T14:54:17.920 回答
0

除了大表(尤其是 MyISAM)上可能的表锁之外,这应该没问题。

那就是:

更新表 SET field = LOWER(field)

于 2011-04-01T21:07:10.833 回答
0

这不会更新每个字段,只会将特定命名的字段转换为小写。

于 2011-04-01T21:28:35.923 回答