Example from harbu's plugins (first thing to come to mind involving mysql and amxx

)
Code:
format(query,255,"INSERT INTO jobs (JobID,JobName,Salary,Access) VALUES('%i','%s','%i','%s')",JobID,title,p_salary,JobRight)
"jobs" would be the table
"JobID" column,
"JobName" column,
"Salary" column
"Access" column
And then you just need to put %i for the amount of columns each database has, then define what you're putting in by listing them in the same order as you inserted them into the tables
__________________