在asp.net中用vb.net编写程序读取oracle中是我数据,如果某一列为空那么怎么判定?还有就是读取数据后立即删改行数据怎么实现?谢谢大神
如果是字符的空,如:‘NULL,就用 coulun <> 'NULL'。如果是对象为空,就用 is not null
判断一列为空 is null立即删改delete from table where id in (select id from table whete 条件)