3f2271f51b
* "An Intro to Hibernate Entity Lifecycle" "An Intro to Hibernate Entity Lifecycle" by Rudi * Revision from Predrag's feedback * Another revision from Predrag's feedback * Another feedback.
25 lines
536 B
SQL
25 lines
536 B
SQL
create sequence hibernate_sequence start with 1 increment by 1;
|
|
|
|
create table Football_Player (
|
|
id bigint not null,
|
|
name varchar(255),
|
|
primary key (id)
|
|
);
|
|
|
|
insert into
|
|
Football_Player
|
|
(name, id)
|
|
values
|
|
('Cristiano Ronaldo', next value for hibernate_sequence);
|
|
|
|
insert into
|
|
Football_Player
|
|
(name, id)
|
|
values
|
|
('Lionel Messi', next value for hibernate_sequence);
|
|
|
|
insert into
|
|
Football_Player
|
|
(name, id)
|
|
values
|
|
('Gigi Buffon', next value for hibernate_sequence); |