On 19 Jan 2016, at 6:14am, Ali Moradi <adeadmarshal at gmail.com> wrote:
> Hi, i am working on a python 2.x and Tkinter program. My table have 2 > fields. How can i get a specific row? Should i write : > SELECT * FROM (table-name) WHERE IDENTIFICATION == 1 > > How can i get the row id? Thanks. If you know the value in one of the columns use can ask for that row only, as in your example above. But use just a single equals sign, not a double one: SELECT * FROM MyTable WHERE identification = 1 Simon.

