Advertisement
ADL_Rodrigo_Silva

Untitled

Jan 17th, 2022
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  
  3. /* Código para Oracle
  4.  *
  5.  
  6. CREATE TABLE pokemones
  7. (
  8. pokedex NUMBER,
  9. nombre VARCHAR2(10),
  10. tipo1 VARCHAR2(10),
  11. tipo2 VARCHAR2(10),
  12. PRIMARY KEY(pokedex)
  13. );
  14.  
  15. CREATE TABLE mis_pokemones
  16. (
  17. pokedex NUMBER,
  18. fecha_captura DATE,
  19. lugar VARCHAR2(20),
  20. huevo CHAR(5),
  21. peso NUMBER(10,2),
  22. estatura NUMBER(10,2),
  23. FOREIGN KEY (pokedex) REFERENCES pokemones(pokedex)
  24. );
  25.  
  26. */
  27.  
  28. /* Código postgres */
  29.  
  30.  
  31. create table pokemones
  32. (
  33.     pokedex numeric,
  34.     nombre varchar(10),
  35.     tipo1 varchar(10),
  36.     tipo2 varchar(10),
  37.     primary key (pokedex)
  38. );
  39.  
  40. select * from pokemones;
  41.  
  42. CREATE TABLE mis_pokemones
  43. (
  44.     pokedex numeric,
  45.     fecha_captura DATE,
  46.     lugar VARCHAR(30),
  47.     huevo CHAR(5),
  48.     peso decimal(10,2),
  49.     estatura decimal(10,2),
  50.     FOREIGN KEY (pokedex) REFERENCES pokemones(pokedex)
  51. );
  52.  
  53. select * from mis_pokemones;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement