我想要删除表中某行的列值,用SQL语句该怎么写啊?
------解决方案--------------------------------------------------------
update TableName set ColumnName=null
------解决方案--------------------------------------------------------
select a,b from 表名 where rownum >20 and rownum < 30
是表中 20到30行的a,b两列的数据。
希望可以帮助到你哦。