Guest User

Untitled

a guest
Jul 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. UPDATE usuarios
  2. SET referencia = REPLACE (referencia, '­', '');
  3.  
  4. UPDATE usuarios
  5. SET referencia = IFNULL(
  6. CONVERT (
  7. BINARY CONVERT (referencia USING latin1) USING utf8
  8. ),
  9. referencia
  10. )
Add Comment
Please, Sign In to add comment