In Oracle ProC - we can give an array of values in where condition of a field.. i.e.
Select * from employee where emp_id = :m_emp_id
here m_emp_id
is an array of employee ids. i.e. int m_emp_id[5]
; and array contains 5 empids: 100 - 104
In MariaDB or Mysql C-API, do we have any such way to implement the same functionality like ProC ?
We can generate multi statements with ; appending so..it gets 5 select statement with ; at end..
But I like to know, is there any other way of array binding concept like ProC in mysql/mariadb C-API ?