Search Results

1
vote
2answers
544 views

Does SQLite support SCOPE_IDENTITY?

I'm trying to perform a simple INSERT and return the identity (auto-incrementing primary key). I've tried cmd.CommandText = "INSERT INTO Prototype ( ParentID ) VALUES ( NULL ); SELE …
0
votes

Group date as month

GROUP BY YEAR(i.push_date), MONTH(i.push_date) …