sunny joshi

Greenhorn
+ Follow
since Apr 24, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by sunny joshi

Suppose I want to create 2 tables -- Department, Student

Student {
name,
id,
address
}

Department {
Dept_name,
Students[] student,
}

in which "department" table contains a group of "student".

How to do the "create table" statement for "department" ? Please help.
19 years ago
Given an existing XML and its schema, if I want to convert it into relational database and then take advantage of Hibernate to update the data, does Hibernate provide any tool to automatically convert the XML schema into relational database schema ?