Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Wack61916yStanford has a course on youtube back from 2013 or 2014, which is quite good. If I find the link, I'll post it here. I don't recall exactly if it includes store procedure, but I think it does.
-
Do you know how to write normal queries?
It's almost the same, but in stored procedures you can use variables, and functions if you want.
Also, there is a difference if you are using it in Mysql or Microsoft SQL Server
This playlist explain it good for Microsoft SQL Server:
https://youtube.com/playlist/...
Good luck in your search -
@Divisionbyzero no problem, do you want to write sp inside phpmyadmin? Or do you have mysql application?
-
Wombat102446y@FahadAlt I have no clue what can be done with it. I will take a glance at it first and then decide what to do with it.
-
@Divisionbyzero ok, its really good!
You won’t need to write queries in your php code anymore if you use it. You just call the sp. -
Wack61916yThis was the playlist: https://youtube.com/playlist/... unfortunately there is no lesson labled as stored procedures. I thought, I remembered that in there somewhere she talked about it. But I'm not sure anymore.
-
@Divisionbyzero yeah, but there is a small trick .. you need an OOP class that help you make the db connection and called the SP and passing the variables.
Classes like this can be found here:
https://www.phpclasses.org/
The want I used to use was made for SQL server.
Related Rants
I'm searching good resource for learning more about stored procedures in SQL. Know any?
question
btw
is it worth learning?