JavaToPerlNowVB
Programmer
I have these tables and I don't know who did but the problem is that I have a field (Text Field) but have used to store a number. And there are blanks for some records. I want to change some those records to a number. I tried like this
as a example
I couldn't get the wo='BLANK' data to showup but they are there
THanks
as a example
Code:
SQL> select prefix, suffix, wo from gisadm.gndlinefacilitymaintpole where prefix='105110' and
2 suffix='31' and wo=null;
SQL> select prefix, suffix, wo from gisadm.gndlinefacilitymaintpole where prefix='105110' and
2 suffix='31' and wo=' ';
I couldn't get the wo='BLANK' data to showup but they are there
Code:
SQL> select prefix, suffix, wo from gisadm.gndlinefacilitymaintpole where prefix='105110' and
2 suffix='31';
PREFIX SU WO
------ -- ----------
105110 31 1049036
105110 31 1041865
105110 31 1041865
105110 31 1049036
105110 31 1049036
105110 31 1043039
105110 31
105110 31
8 rows selected.