Home > Database > Mysql Tutorial > Oracle中的Change命令

Oracle中的Change命令

WBOY
Release: 2016-06-07 16:46:25
Original
2092 people have browsed it

可以用Change命令来改变字符串(即替换字符串)。语法如下: C[HANGE] sepchar old [sepchar [new [sepchar]]] Sepchar 为分隔符

可以用Change命令来改变字符串(即替换字符串)。语法如下:

C[HANGE] sepchar old [sepchar [new [sepchar]]]

Sepchar 为分隔符,,可以是”/”或”!”  -- 请使用者特别注意

Old 旧字串

New新字串

例:将 除号(/)改为 乘号( * ),则需要命令为c !/!*!。即:
SQL> l
  1* select sal,sal/100 from emp
SQL> c !/!*!

提醒:对于修改 / 字符的只能用 ! 来作分隔符(上例)。

例:将乘号( * )改为 加号( + ),则需要命令为c !/!*!   。即:
SQL> l
  1* select sal,sal*100 from emp
SQL> c/*/+/
  1* select sal,sal+100 from emp
SQL>

更多Oracle相关信息见Oracle 专题页面 ?tid=12

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template