I have the following table:
CREATE TABLE IF NOT EXISTS TEST_TABLE ( testID INTEGER PRIMARY KEY AUTOINCREMENT, testName TEXT);
Some of the test data
- Test
- Hello
- aa
- World
My Query
SELECT * FROM TEST_TABLE ORDER BY testName
Response:
- Hello
- Test
- World
- aa
Expected:
- aa
- Hello
- Test
- World
Can someone explain why this is the response?
try this: