Hi all
Often we use = and LIKE in the SQL Query , But I want to know that what is the difference between = AND LIKE


Code:
SELECT * FROM Table WHERE Name ='shakti'
Code:
SELECT * FROM Table WHERE Name LIKE 'shakti'

What is the difference?
Thanks