我想在列上创建v查找功能 这是基于同一个表中的另一列,基本上我已经做过了。
ViewContainerRef
在第二张表的 Tot_expenses 中,我试过了:
Create table Expense (
card Int(12),
Foreign Key (Card) References Money(Card),
Amt_Used int(255)
)
Create table Money (
Card int(12) Primary Key,
Original_Amt int(255),
Tot_Expense int(255)
)
......但它没有用。我想要做的是从信用卡中创建一笔钱,考虑到有多张信用卡。