eloginko Posted January 25, 2014 Share Posted January 25, 2014 how to make a stored procedure in sql and use it on php?? i wanna make a stored procedure of my queries below and use it on my php program. can anyone help me? Please //query 1 INSERT INTO afnup_worksheet (faic,fnl_name,ftotal) SELECT DISTINCT atic ,atname ,(SELECT SUM(inttotal) FROM app_interview t2 WHERE t2.atic = t.atic)/7 FROM app_interview t GROUP BY atname HAVING COUNT(DISTINCT atic) //query 2 SELECT count(t.atic) as total,t2.name FROM app_interview as t, tb_applicants as t2 WHERE t.atic = t2.aic GROUP BY t.atic; Quote Link to comment Share on other sites More sharing options...
jcbones Posted January 25, 2014 Share Posted January 25, 2014 Stored procedures are "stored" on the database server, therefore you cannot use them in the PHP server. However, you can store a procedure, and call it from a different program such as PHP. In standard SQL you would use the MySQL CALL or the SysBase CALL or the Oracle CALL syntax. Of course, that list goes on and on. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.