天软金融分析.NET函数大全
>
TSL函数
>
基础函数
>
数组
>
表格显示
NonIntersectionPart
复制链接
简述
求差集(返回在t1中存在,而在t2中不存在的记录)
定义
NonIntersectionPart(t1:Array;t2:Array;KeyField:String):Array
参数
名称
类型
说明
t1
Array
数据表
t2
Array
数据表
KeyField
String
指定某一字段
返回
Array
求一个数据表与另一个数据表的差值
范例
t1:=array(('a':1,'b':4),('a':7,'b':8),('a':2,'b':3));
t2:=array(('a':1,'b':1),('a':7,'b':8),('a':5,'b':5));
return NonIntersectionPart(t1,t2,'b');
结果:
相关
Pivot
Pivot_table
Show3DTable
Show2DTable
ShowTableByField
ShowTableByUnit
ShowTableByInverse
QuickRecordExist
RotateTable
NonIntersectionPart
FooterValue
FooterAverage
FooterSum
SetRowDefaultValue
InverseTable
GetSubTableByKey
TableSelect
TableType
GetSubTableFreeParam
ExpandTable