Superwormy
Golden Member
Aight so I'm using MySQL currently, and theres one query imparticular which I run OVER AND OVER AND OVER again, and I've been told Stored Procedures are the way to go to make it faster, eliminating the query parse time.
Well, MySQL doesn't support Stored Procedures :-(
Is there another way to speed up the query in MySQL, something along the lines of Stored Procedures maybe?
The query is simple, just a simple:
SELECT * FROM tablename WHERE IDX = value
Well, MySQL doesn't support Stored Procedures :-(
Is there another way to speed up the query in MySQL, something along the lines of Stored Procedures maybe?
The query is simple, just a simple:
SELECT * FROM tablename WHERE IDX = value