Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
包含哪些表货币十进制值。请提供 Microsoft 动态 gp 表名称。通过这种方式,我们可以在 GP Tools->setup->Financial->Multicurrency 中设置 Decimal 值。
在表 CM20200 中查找列 DECPLCUR ,它包含货币 ID 的小数位
USE TWO SELECT * FROM sysobjects o, syscolumns c WHERE o.id = c.id AND o.type = 'U' AND c.name = 'DECPLCUR' ORDER BY o.name
上面的 sql 脚本将为您提供在“TWO”测试公司数据库中具有小数位字段的所有表。