I have a table with a field 'Text'. The 'id' field is automatically increased when data is inserted. I run this query:
INSERT into answer (Text) VALUES ('Test');
INSERT into answer (Text) VALUES ('Test');
INSERT into answer (Text) VALUES ('Test');
INSERT into answer (Text) VALUES ('Test');
Delete From answer;
I need get future id (when I will insert next text). Can you help me with query, that take me number = 5 (but not 1, because 'id' automatically increased)?