I have two tables A and B. A has columns a,b,c,d,e,f and B has columns a and g. How can I get the row from table A according to the value of 'a' from Table B?
            Asked
            
        
        
            Active
            
        
            Viewed 58 times
        
    -1
            
            
        - 
                    1You can try this query "SELECT * FROM B LEFT JOIN A on A.a = B.a WHERE B.a = yourinput" – Arshad Feb 27 '18 at 07:30
- 
                    2Possible duplicate of [SQL JOIN and different types of JOINs](https://stackoverflow.com/questions/17946221/sql-join-and-different-types-of-joins) – Vishnu Bhadoriya Feb 27 '18 at 07:46
 
     
     
    