Your question was not very clear, but apparently what you intend to do is quote two editions different from the same work.
If so, you should create two entries in your file .bib
changing only the tag of reference and to editing of the work.
The example below would be for a book.
@book{autor2009,
author = {Autor},
title = {Nome do livro},
publisher = {Editora},
year = {ano},
volume = {volume},
series = {serie},
address = {Endereço},
edition = {**n° edição2009**},
month = {mês},
note = {Anotação},
isbn = {ISBN}
}
and
@book{autor2017,
author = {Autor},
title = {Nome do livro},
publisher = {Editora},
year = {ano},
volume = {volume},
series = {serie},
address = {Endereço},
edition = {**n° edição2017**},
month = {mês},
note = {Anotação},
isbn = {ISBN}
}
and to quote you use \cite(autor2009)
and \cite(autor2017)
.