查询中的多个架构访问

时间:2017-01-30 18:04:40

标签: java spring mariadb

我有两个不同模式的表。我必须加入这两个表并在java中获取记录。 maria DB不支持函数,因此我无法使用函数。有人在想这个吗?

1 个答案:

答案 0 :(得分:0)

select t.field1, t2.field1
  from schema1.tablename t,
       schema2.tablename t2
 where t.key = t2.key;