I have the following table and columns.
Account
AccountNo(Integer) AccountID(VarChar)
----------------------------------------------------
0134707 John
0134570 Perry
0134752 Koala
Is there any SQL query for me to select AccountNos which begin with '0134'? i tried using the Select * from account where accountno = %0134% but it didnt work. Thanks for your help