I am using Sqlite-net-pcl. I need to which query is better to use. I am searching in a table if there is at least one record.
First query
Select exists(Select 1 from invnentory where itemname='box2')
Second query
Select count(*) from inventory where itemname='box2'
Both queries are working right. But which is the best approach to go for sqlite-net-pcl?