原始查询是针对ms-access db表的,它包含一个like语句,我无法在转移到postgresql的同一表上运行。
sql语句:
SELECT Table1.property1, Table1.property2
FROM Table1, Table2
WHERE (((Table2.NAME) Like "*" & [Table1]![property2] & "*"));
property2
是该列的名称。我如何保持相同的逻辑并传输sql语句,以便它与postgresql一起使用?