将Microsoft Access之类的语句转移到Postgresql

时间:2018-08-10 10:38:37

标签: postgresql ms-access sql-like

原始查询是针对ms-access db表的,它包含一个like语句,我无法在转移到postgresql的同一表上运行。

sql语句:

SELECT Table1.property1, Table1.property2
FROM Table1, Table2
WHERE (((Table2.NAME) Like "*" & [Table1]![property2] & "*"));

property2是该列的名称。我如何保持相同的逻辑并传输sql语句,以便它与postgresql一起使用?

0 个答案:

没有答案