当前位置:网站首页>Oracle/PLSQL: CharToRowid Function
Oracle/PLSQL: CharToRowid Function
2022-06-27 01:35:00 【yuanlnet】
In Oracle/PLSQL, the chartorowid function converts a char, varchar2, nchar, or nvarchar2 to a rowid.
Syntax
The syntax for the chartorowid function is:
chartorowid( value1 )
value1 is the value to convert to a rowid.
The format of the rowid is:
BBBBBBB.RRRR.FFFFF
where:
BBBBBBB is the block in the database file;
RRRR is the row in the block;
FFFFF is the database file.
Applies To
- Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
For Example
select * from suppliers
where rowid = chartorowid('AAABoqAADAAAAwPAAA');
This would return a unique row from the suppliers table.
边栏推荐
- Keepalived 实现 Redis AutoFailover (RedisHA)14
- C语言--职工信息管理系统设计
- 30《MySQL 教程》MySQL 存储引擎概述
- Custom MVC (imported into jar package) + difference from three-tier architecture + reflection + interview questions
- buuctf-pwn write-ups (6)
- George Washington University: Hanhan Zhou | PAC: auxiliary value factor decomposition with counterfactual prediction in Multi-Agent Reinforcement Learning
- NOKOV动作捕捉系统使多场协同无人机自主建造成为可能
- UVM中uvm_report_enabled的用法
- Systematic analysis of social networks using Networkx: Facebook network analysis case
- SystemVerilog仿真速率提升
猜你喜欢
随机推荐
UVM中config_db机制的使用方法
Summary of config mechanism and methods in UVM (1)
通过Rust语言计算加速技术突破图片识别性能瓶颈
Two days of beautiful butterfly animation
两个页面之间传参方法
Topolvm: kubernetes local persistence scheme based on LVM, capacity aware, dynamically create PV, and easily use local disk
Nokov motion capture system makes it possible for multi field cooperative UAV to build independently
Kept to implement redis autofailover (redisha) 15
Shell脚本系列篇(1) 入门
memcached基础7
Visual introduction to Matplotlib and plotnine
Due to the invalidation of the prospectus of bori technology, CICC has stopped providing guidance to it and abandoned the listing on the Hong Kong stock exchange?
Memcached foundation 2
UVM in UVM_ config_ Setting and obtaining DB non-linear
Why divide the training set and the test set before normalization?
疫情期间居家办公的总结体会 |社区征文
memcached基础4
Memcached Foundation
perl语言中 fork()、exec()、waitpid() 、 $? >> 8 组合
Custom MVC (imported into jar package) + difference from three-tier architecture + reflection + interview questions
![[graduation season] role conversion](/img/4e/aa763455da974d9576a31568fc6625.jpg)








