Hi
I have an empty column called TEST in a table. It is used so that I can manually enter a letter or a number. This is so that I can run a query i.e. select * from tbl where test = 'a'
the next day I will use 'b' then 'c' etc etc . I want to automate this and not have to manually input a,b,c, etc - sometimes I have manually entered 100 a's
Is there a way of using UPDATE and using a rolling value.
ie. update tbl set TEST = 'a' where test is NULL
then the next day it automatically goes to b then c etc
or is using letters a bad way to go about it ?
thanks,,
Paul
I have an empty column called TEST in a table. It is used so that I can manually enter a letter or a number. This is so that I can run a query i.e. select * from tbl where test = 'a'
the next day I will use 'b' then 'c' etc etc . I want to automate this and not have to manually input a,b,c, etc - sometimes I have manually entered 100 a's
Is there a way of using UPDATE and using a rolling value.
ie. update tbl set TEST = 'a' where test is NULL
then the next day it automatically goes to b then c etc
or is using letters a bad way to go about it ?
thanks,,
Paul