oracle的sql脚本怎么注释?

前端之家收集整理的这篇文章主要介绍了oracle的sql脚本怎么注释?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
 
 

单行注释: --


示例:
select * from tb_name; --查xx表的记录明细

多行注释:/**/

示例: select * from tb_name1; /* select * from tb_name2; dbms_output.put_line(sqlerrm); */

猜你在找的Oracle相关文章