Solved
Forum Discussion
jcornelius
4 years agoNew Contributor III
@Damone
do it all in SQL
ie
IF EXIST(Select id from table_x where id=@id)
BEGIN
UPDATE table_x set col1=@col1 where id=@id
END
ELSE
BEGIN
INSERT INTO into table_x (id,col1) values(@id,@col1)
END
- cjhoward184 years agoEmployee
Hi @jsmith141
Since the specification is stored as a JSON object there is no guarantee on the order of the keys displayed, and we do not have a way to customize the order displayed at the moment.
- jsmith1414 years agoNew Contributor III
Hi @cjhoward18,
Thanks for the reply. That is kinda what I figured was happening. Do you happen to know if controlling the order of the keys being displayed may be something that is possible in a future update, or is it on the list to be added as a product enhancement?
Thanks again