SyntaxHighlighter.config.bloggerMode = true;
SyntaxHighlighter.config.clipboardSwf = 'http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf';
SyntaxHighlighter.all();
Consider two Entity Employee and Address.
Class Address {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column
private String id;
@Column (name = "name")
private String name;
//with...
Join between Non-Primary Key of One Entiry and Non-Primary Key of other Entity
Join between Non-Primary Key of One Entiry and Non-Primary Key of other Entity