0
MySQL stored procedures
anyone able to give me proper syntax for a stored procedure when trying to insert a row. the table only has two columns.
1 Réponse
0
insert into table_name (colume1,colume2) values (value1,value2);
it will insert value1 and value2 in colume1 and colume2 contains by table_name.