Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. create table profesoresT
  2. (
  3. id varchar(50) primary key not null,
  4. nomb_profe varchar(50),
  5. f_nacimiento date,
  6. estado int,
  7. edad AS (to_date(SYSDATE, 'yyyy-MM-dd') - f_nacimiento)
  8. );
  9. commit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement