博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GL_SETS_OF_BOOKS 帐簿表
阅读量:2387 次
发布时间:2019-05-10

本文共 464 字,大约阅读时间需要 1 分钟。

GL_SETS_OF_BOOKS 账簿表

SET_OF_BOOKS_ID 账簿ID

NAME 账簿名称

CHART_OF_ACCOUNTS_ID 账簿科目体系ID

 

-- 单位OU与帐簿SOB关系。一个帐簿可对多个单位

-- 一个单位可在多个帐簿

SELECT sob.name sob_name,

count(sob.name) over(partition by sob.name order by sob.name) sob_qty,

hou.name ou_name

FROM hr_all_organization_units hou,

hr_organization_information hoi,

gl_sets_of_books sob

WHERE 1 = 1

AND hou.organization_id = hoi.organization_id

AND hoi.org_information_context = 'Operating Unit Information'

org_information3

转载地址:http://euvab.baihongyu.com/

你可能感兴趣的文章
Build Your Own PaaS on RHEL 6
查看>>
关于JAX-RS的导引阅读
查看>>
Markdown编辑器editor.md的使用
查看>>
FileServlet supporting resume and caching and GZIP
查看>>
spring boot etag header example
查看>>
关于大数据的两个大分支
查看>>
spring boot Websocket
查看>>
关于企业到个人的转账
查看>>
Angular4中调用js代码
查看>>
JAVA8-用lamda表达式和增强版Comparator进行排序
查看>>
spring boot 2.0 使用Hikari连接池——号称java平台最快的,替换druid
查看>>
GnuPG Java Wrapper API - Sample code
查看>>
HTTP Cache 总结及Nginx Cache配置
查看>>
基于现有 TensorFlow 模型构建 Android 应用
查看>>
Building an Ionic OCR App with Tesseract
查看>>
Spring boot with Apache Hive
查看>>
hortonworks-sandbox oozie缺少extjs的问题解决
查看>>
使用logminer来分析对表所做的修改
查看>>
ORA-01801: Date Format too long for internal buffer
查看>>
with table as触发ora-03113:通信通道的文件结束
查看>>