I got two sql statements:
SELECT username AS userA FROM WHERE username='abc'
SELECT username AS userB FROM WHERE username='abcd' AND password='abcd'
I want to output the result as below:
userA | userB
----------------
abc | abcd
How to combine two SQL statements?
whereclause.)