K3数据库表结构
K3数据库表结构查看方法,直接在数据库中打开表 t_TableDescription,其中即各表及其与K3功能的对应关系
也可直接查询:
select * from t_TableDescription where FDescription like '销售订单%'
还有字段的信息描述表 t_FieldDescription
查询:
select * from t_TableDescription a join t_FieldDescription b on a.FTableID=b.FTableID
where a.FDescription like '销售订单%'