Hello,
When i did a search on my SQL data, there are a lot of empty-value fields, which don't contain anything, i want to fill them up with value " " , but i cannot find any efficient method to achieve that.
I tried fillnull function , but it didn't work through. If i do it by hand, like
eval field=case(isnull(field)," ",NOT isnull(field),field)
it works, but if there are nearly 100 fields, it's impossible.
So can you suggest me a solution for that ?
... View more