|
|
我的data里有很长的data,超过255 characters,eg, "abc"(这里假设"abc"超过255 characters)
我的select的时候, 我这样“select column from table where column = "abc"
他会找不到,我必须把"abc" cut到255characters才找得到,"select column from table where column = "ab",
他会return我result "abc"
请问有什么方法可以让我“select column from table where column = "abc", 而他会return 我 abc.
当我“select column from table where column = "ab", 他不会return我abc.
update也是要这样
当我update table set column = "ccc" where column = "abc",他会找没有。
[ 本帖最后由 CoLoUrGhOsT 于 7-4-2008 12:29 PM 编辑 ] |
|