I have a table Employee in the SQLite database. Whose primary key is \"ID\" of GUID type. I try to find the record with id = guid \'a8828ddf-
Employee
id
\'a8828ddf-
The GUID is probably being stored as a binary blob; try:
SELECT * FROM Employee WHERE Employee.Id = X'a8828ddfef224d36935a1c66ae86ebb3';