Jump to content

make a stored procedure to use in php


eloginko

Recommended Posts

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;

Link to comment
https://forums.phpfreaks.com/topic/285668-make-a-stored-procedure-to-use-in-php/
Share on other sites

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.