0

是否可以通过使用不简单且通常的字段 A = 字段 B 而是使用更复杂的方法来连接 Crystal Records 中的表:

select * from table1 inner join table2
on table1.A=2*table2.B

或者

select * from table1 inner join table2
on ASCII(table1.A)=ASCII(table2.B)
4

1 回答 1

0

在 Database Expert 中使用单个命令而不是表。您将能够使用更复杂的 SQL。

于 2013-03-18T14:03:52.137 回答