Firstly, I am completely new to Flow, so please be explicit with your instructions.
This is somewhat of a cross-post from https://powerusers.microsoft.com/t5/General-Power-Automate/flow-data-types/m-p/417700/highlight/false#M35194 , just not sure which forum is best for this type of question.
I am currently trying to create a manual flow to insert a record into MySQL using the MySQL connector, eventually this will be used to process incoming e-mail, but I'm not there yet, let's keep things simple at this point in time.
My issue is, after several attempts, I found out Flow won't insert into a table without a PK?
Then I figured out, that it would seem that it requires that I provide the PK value even though the column is defined as an auto increment and normally is auto generated. Is this normal?
So, the only way I managed to get things working was to create an action to retrieve the greatest PK value and then use that value+1 in my Insert action. This seems wrong to me, and requires a normally not required step.
I tried omitting the PK field, but flow says it's required.
I tried pushing null, but then the flow errs.
So I ask you, how can I perform a simple Insert using the MySQL Connector in a way that Flow allow MySQL to auto increment the PK value itself? Or am I doing things the 'right way', well according to Flow at least?