Found the answer here: Not able to define SQL parameter on bubble - SQL query for dynamic search (multiple optional parameters)
MS SQL insert state uses @Paremetername to call the parameter… so correct syntax:
Insert into Uname
Values @name;
Found the answer here: Not able to define SQL parameter on bubble - SQL query for dynamic search (multiple optional parameters)
MS SQL insert state uses @Paremetername to call the parameter… so correct syntax:
Insert into Uname
Values @name;