Posts by Lucas Martins Calixto • 1 point
1 post
-
-2
votes1
answer14
viewsQ: Can an Enum table in the database store more than one value for the same element?
public enum SitucaoEnum { INCLUSAO(1), CANCELAMENTO(2), ATUALIZACAO(3), FINALIZACAO(4); } Can I save more than one such value in a type Enum column in the database? Or only rescue of one Enum per…