Learn salt DECODE() MySQL knowing the password ?
#1
Question 
MySQL DECODE() & ENCODE() => github source

ENCODE:
Code:
INSERT INTO users(pass) VALUES (ENCODE('pass123','salt'))
OUT:
Code:
q+ÀC[

DECODE:
Code:
SELECT DECODE(pass,'salt') as 'decode pass' FROM users
OUT:
Code:
pass123

The database I have encrypted passwords, i know some of the passwords
Can I get salt with which passwords have been encrypted?
(to decrypt the remaining passwords)