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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.