表A中有24个字段,有char,datetime,float,int,text类型的。
A的视图A_VIEW(select * from A where ...)(条件是某个字段为空)
sql语句大概是:
更改A_VIEW里的某些字段,
update...
update...
update...
update...
....
问题是:如果datetime 型的字段放在最前,那么只有datetime 型的字段能更改,其它字段都改不了;如果把datetime 型的字段放到最后,则一切正常!
何也?