Oracle数据库操作SQL语句

查询前几条记录

  • select * from table1 where rownum <=N;

修改某条记录

  • update table1 set column1=value1, column2=value2 where [条件表达式];
原文地址:https://www.cnblogs.com/snigoal/p/2425678.html