How do I extract all fields beginning with '1.' from the database? In my statement I used LIKE but it did not have any return, but if I remove the point it already returns something, but it returns fields that I do not want, eg 10.1; What's wrong.
SELECT * FROM tbCelula WHERE C_Numeracao LIKE '1.%';
tbCelula C_id C_Numeracao 1 1.1 2 10.1 3 1.1.1 4 2.1
Return 1.1; 1.1.1