Joining Multiple table in Hibernate

Joining Multiple table in Hibernate

Hi everyone,

I'm new to Hibernate (even in JAVA), and I'm having some doubt's about one thing. I created 2 tables in PostgreSQL with 1 to many relationship, and now i'm trying to test some queries to them. Tables names are TbPessoa (one) and TbTelefone(many).

TbPessoa - idPessoa(pk), usNome(charvar), usIdade(int), usTelefone(int)

TbTelefone - idTelefone(pk), usIOperadora(charvar), usTarifario(charvar), usData(date), idPessoa(int)

Foreign Key on TbTelefone referencing TbPessoa (idPessoa to idPessoa on TbPessoa).

I'm trying to create a query where I would get the items where usNome='Peter' OR usOperadora='Vodafone' like we can do with SQL statments like,

SELECT usNome, usOperadora
FROM TbPessoa, TbTelefone
WHERE usNome='Peter' OR usOperadora='Vodafone'***

Finnaly, I need to know how a can print (using System.out.println) the query results. I've been using (just for one table) this:

transaction = session.beginTransaction();
@SuppressWarnings("unchecked")
String query = "SELECT FROM TbPessoa";

List <TbPessoa> lista = session.createQuery(query).list();

int i=0;

for( TbPessoa x : lista ) {

System.out.println( "Id: " + x.getIdPessoa() + "| Nome: " + x.getUsNome() + "| Idade:" + x.getUsIdade() + "| Morada: " + x.getUsMorada() + "| Nr. Telefone: " + x.getUsTelefone());

}

Sorry my bad English! Thanks!

Kind Regards, Raul

View Answers

April 3, 2012 at 10:55 AM









Related Tutorials/Questions & Answers:
Joining Multiple table in Hibernate
Joining Multiple table in Hibernate  Hi everyone, I'm new to Hibernate (even in JAVA), and I'm having some doubt's about one thing. I created 2... (using System.out.println) the query results. I've been using (just for one table
Hibernate joining multiple tables
Hibernate joining multiple tables  In join sample program, what do we mean by the line? String sql_query = "from Product p inner join p.dealer as d... group by p.name"; For more information, visit the following link: Hibernate
Advertisements
Criteria with Multiple Tables - Hibernate
Criteria with Multiple Tables  I am using Hibernates Criteria. How to get Joins using Criteria? e.g. instead of below query i want to use criteria...://www.roseindia.net/hibernate/ Hope that it will be helpful for you. Thanks
mysql alter table add multiple columns
mysql alter table add multiple columns  Hi, I have a table in database. I want to add multiple columns into existing table. What is the code for mysql alter table add multiple columns? Thanks   Hi, You can use
Hibernate Temporary Table
Hibernate Temporary Table   How can i create temporary table in Hibernate
join multiple tables via hibernate criteria - Hibernate
join multiple tables via hibernate criteria  Dear all, i have a problem working with hibernate. i wanna join multiple tables via hibernate criteria. How can i do this operation? Thanks in advance regards Rosa
SQL Alter Table Add Multiple Columns
SQL Alter Table Add Multiple Columns       Alter Table Add Multiple Columns in SQL... demonstrate Alter Table Add Multiple Columns. The SQL Query create a table 'Stu
Hibernate envers revinfo table
Hibernate envers revinfo table  Hi, What is the structure of hibernate envers revinfo table? What is the use of envers revinfo table and its structure? Thanks
Retrieve multiple data from database into Table.....
Retrieve multiple data from database into Table.....   hi........... I want to Retrieve multiple data from database into Table but i am not able to.... i am only able to retrieve one value not more than that. means in my
Hibernate Criteria Multiple or
Hibernate Criteria Multiple or You can implements multiple or in hibernate... of multiple or is given below CriteriaMultipleOr.java package... run this application it will display message as shown below: Hibernate
How to update table in Hibernate
How to update table in Hibernate  Hi, I have a table in database that has two fields in it. Student Name and ID, can anyone explain me how to update these tables in Hibernate. Thanks.   Update table query in Hibernate
SQL Alter Table Add Multiple Columns
SQL Alter Table Add Multiple Columns       Alter Table Add Multiple Columns in SQL... demonstrate Alter Table Add Multiple Columns. The SQL Query create a table 'Stu
Retrieving value from multiple table in database
Retrieving value from multiple table in database  Hi fnds, I want to maintain the financial database of 20 users for 1 year and update the details... created 12 tables with table name - month1,month2,....,upto month12.. each table
Data fetch from multiple SQL tables - Hibernate
keys. I have created hibernate mapping for each table, datasource...Data fetch from multiple SQL tables   I am in the process of writing my first hibernate application. I have a sql query that fetches data from
is it possible to connect the multiple databases from the hibernate application
is it possible to connect the multiple databases from the hibernate application  is it possible to connect the multiple databases from the hibernate application,if it is possible then tell me with step wise manner
creating table in hibernate
creating table in hibernate  how to create table by the help of hibernate   There are 2 alternatives to create table in hibernate: 1... table in my oracle database by the help of hibernate, so if you would help me
delete row from a table in hibernate
delete row from a table in hibernate  is there method to delete row in a table using hibernate like save(-) to insert row
Hibernate table not mapped error - solution
Hibernate table not mapped error - solution  Hi, What is the reason of Hibernate table not mapped error and it can be solved? Thanks   HI... configuration of Entity class in Hibernate. Hibernate is ORM framework in Java which
Hibernate Envers custom revinfo table
Hibernate Envers custom revinfo table  Hi, How to use the custom table instead of revinfo table? I don't want to use the default table I want to give another name for this table. How to do this? Thanks
can we update table in hibernate with out primary key in table?
can we update table in hibernate with out primary key in table?  can we update table in hibernate with out primary key in table
Joining tables using criteria
Joining tables using criteria  How do i join more than three tables and retrieve one column from parent table and count of unique values in a single column from child table,the joined tables must be maintain primary key
send multiple textbox vaues in to an jsp form to store them in a DB table
send multiple textbox vaues in to an jsp form to store them in a DB table  Hi sir... I am not getting how can i send the multiple input text box... in to an database table. Please help me...... looking forward to hear from you
Retrieve Value from Table - Hibernate
Retrieve Value from Table   Hai friend, I need help, How can i retrieve values From database using hibernate in web Application. As I new to hibernate I couldn't find solution for this problem.. Can anyone help please.. 
Joining two table using Natural Left join
Join Table with Natural left join In Natural Left join, both table are merge... to the first table's field values  means a left outer join returns all the values from the left table and matched values from the right table (NULL in case
Hibernate Envers - REVINFO table doesn't exist
Hibernate Envers - REVINFO table doesn't exist  Hi, In my project I...: Hibernate Envers - REVINFO table doesn't exist How to resolve this? Thanks... hibernate to create table automatically. For this add following property
Mysql Multiple Date Insert
multiple data to the table. Understand with ExampleADS_TO_REPLACE_1... of data in table:ADS_TO_REPLACE_3 The Query insert into is used for Multiple... Mysql Multiple Date Insert   
Mysql Multiple Date Insert
multiple data to the table. Understand with ExampleADS_TO_REPLACE_1 The Section... for Multiple insertion of data in table: The Query insert into is used for Multiple insertion of data in table 'Employee'. The Query is used ADS
ModuleNotFoundError: No module named 'django-joining'
ModuleNotFoundError: No module named 'django-joining'  Hi, My... named 'django-joining' How to remove the ModuleNotFoundError: No module named 'django-joining' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'django-joining'
ModuleNotFoundError: No module named 'django-joining'  Hi, My... named 'django-joining' How to remove the ModuleNotFoundError: No module named 'django-joining' error? Thanks   Hi, In your python
Hibernate envers custom revinfo table
Hibernate envers custom revinfo table - How to specify custom  revinfo table? In this tutorial we are going to teach you to configure the Hibernate... in the tutorial. In Hibernate envers its possible to use the custom revinfo table
How properties of a class are mapped to the columns of a database table in Hibernate?
of a database table in Hibernate? Hibernate 5 is very powerful yet flexible ORM... properties to database table Hibernate 5 is mostly using the annotations... to many relationship mapping @JoinTable - Joining entity @JoinColumn - Table
How properties of a class are mapped to the columns of a database table in Hibernate?
of a database table in Hibernate? Hibernate 5 is very powerful yet flexible ORM... properties to database table Hibernate 5 is mostly using the annotations... to many relationship mapping @JoinTable - Joining entity @JoinColumn - Table
How properties of a class are mapped to the columns of a database table in Hibernate?
of a database table in Hibernate? Hibernate 5 is very powerful yet flexible ORM... properties to database table Hibernate 5 is mostly using the annotations... to many relationship mapping @JoinTable - Joining entity @JoinColumn - Table
How properties of a class are mapped to the columns of a database table in Hibernate?
of a database table in Hibernate? Hibernate 5 is very powerful yet flexible ORM... to map Java properties to database table Hibernate 5 is mostly using... to many relationship mapping @JoinTable - Joining entity @JoinColumn - Table
Delete database Table through hibernate and Spring
Delete database Table through hibernate and Spring  Hi, I am using Spring,Hibernate and Tapestry to save and also fetch data simultaneously from... once without repetation,or Detete table after data is fetched. Here
Mysql Alter Add Multiple Columns
the table and add multiple columns to the specified table. Understand... Multiple Columns'. To understand this example, we create a table 'employees... to alter Table named employees by adding multiple column named city:ADS_TO_REPLACE_5
delete row from a table using hibernate
delete row from a table using hibernate  //code in java file String hql="delete from CONTACT c where ID=6"; Query query=session.createQuery(hql); //error when executing above code CONTACT is not mapped
how to get multiple hyperlink values from a table column to another jsp file?
how to get multiple hyperlink values from a table column to another jsp file... for the user string in the database, as a result a table will come up with 3 columns itemid...="history.go(-1);return true;"/> <table border="1" style="table-layout
Table view with multiple view and sections
Table view with multiple view and sections Project will look like... another view to the cell(Rows of Table View)  and will have two section in Table View and will have Back button on next view so that we can come back
Hibernate Criteria load all objects from table
Hibernate Criteria load all objects from table - Learn how to load all... from a table then you can easily use the Hibernate Criteria load all objects... Criteria Query to fetch all data from a table. Read more Hibernate Criteria
Mysql Alter Multiple Columns
Mysql Alter Multiple Columns       Mysql Alter Multiple Columns is used to modify the table... in set (0.00 sec) Query to alter multiple column's of  Table
table
table  multiplicatyion table
TABLE
TABLE   Why doesn't <TABLE WIDTH="100%"> use the full browser width
Table
Table  How i generate table in showMessageDialog. I want that i creat a table and run in showMessageDialogeprint("cprint("code sample");ode sample
Table
Table  How I generate table in showMessageDialog. E.g 3X1=3 3X2=6 3X3=9print("code sample
Table
Table  How i generate table in showMessageDialog. I want to creat a table and run in showMessageDialoge. Pl make a table programe which run..., JOptionpane, Integer.parseInt. Please use only these above methods to make table
table
input from oracle table(my database table..) This is a very important table of my
table
table  Hi..I have a list of links which links to a table in the same page.If I click first link the table is displayed at the top, likewise if i click the last link the table is displayed at the last,i dont know how to set
Table
Table  How i generate table in JOptionpane.showMessageDialog... advance coding but i want u make the table using JOptionpane.showMessageDialog, import.javax.swing int Integer.parseInt(). Thats my limit. Pl generata a table
table?
table?  Hi, how could i make a table in javascript, which would look like this: AA CODON Number /1000 Fraction .. (this row... can't figure out, how to construct a table,with two fixed columns, one that reads

Ads