I have the following table.
Name Surname Age
John Gordon 22
Abbey Gibson 43
Claude Dickson 34
Jean Huston 54
Georges Oak 35
Georges Lane 32
Cathy Harper 12
Joseph Gordon 11
Chloe Lane 23
I am trying to run the following query:
Select * from MyDB.myTable where myTable.Surname LIKE '%on'
Assumable, this should return to me all the rows that have their surnames ending with on
, however, I only get 1 row return.