0

I have two tables in two different schemas. I have to join these two tables and fetch the record in java. maria DB does not support functions, so i can't use functions. Anyone is having any thought on this ?

Barun
  • 11
  • 1

1 Answers1

0
select t.field1, t2.field1
  from schema1.tablename t,
       schema2.tablename t2
 where t.key = t2.key;
Marco Polo
  • 728
  • 5
  • 10