Advertisement
sconetto

SBD - Trunca Projeto

Jun 9th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.92 KB | None | 0 0
  1. -- ------------------------------------------------------------- --
  2. -- Data de Criacao: 09 / 06 / 2016                               --
  3. -- Autor: João Pedro Sconetto                                    --
  4. -- Tabelas criadas = 9                                           --
  5. -- SGBD = PROJETO                                                --
  6. -- ------------------------------------------------------------- --
  7. -- Data da Modificacao: 09 / 06 / 2016                           --
  8. -- Nome do Autor:João Pedro Sconetto                             --
  9. -- ------------------------------------------------------------- --
  10.  
  11. USE PROJETO;
  12.  
  13. SET FOREIGN_KEY_CHECKS = 0;
  14.  
  15. TRUNCATE TABLE PUBLICACAO_CIENTIFICA;
  16. TRUNCATE TABLE LIVROS;
  17. TRUNCATE TABLE ARTIGOS;
  18. TRUNCATE TABLE PERIODICO;
  19. TRUNCATE TABLE ASSUNTO;
  20. TRUNCATE TABLE PRODUZIDO;
  21. TRUNCATE TABLE OBRAS;
  22. TRUNCATE TABLE AUTOR;
  23. TRUNCATE TABLE LOCAL;
  24.  
  25. SET FOREIGN_KEY_CHECKS = 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement