存储过程的替代方案
我使用一个网络主机,他说每次我想执行存储过程时,我都必须向他们的支持团队发送电子邮件,他们将授予我第一次使用它的权限,(不保证时间尺度或任何东西)有没有我可以使用存储过程的替代方案来加速显示 mysql 数据库中的 5000 多条记录?
I use a web host who say that everytime i want to execute a stored procedure, i have to email their support team and they will grant permission for me to use it for the first time, (no guarantee of timescales or anything) are there any alternatives to stored procedures that i can use to speed up displaying 5000+ records from a mysql DB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在这里问错了问题。它与存储过程的替代方案无关。传递两个附加参数 LIMIT、OFFSET 作为参数,并且仅返回您在 LIMIT 中告诉的内容
You asked the wrong question here. It has nothing to do with alternative to stored procedures. Pass two additional params LIMIT, OFFSET as params and will return only what you have told in LIMIT