有mysqlfiddle吗?
我非常喜欢 jsfiddle 以及它的易用性。
有谁知道有什么可以与 mysql 和 php 混合使用的东西吗?
I've grown quite fond of jsfiddle and how easy it is to use.
Does anyone know of something that works with mysql and maybe php mixed in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能对我的网站感兴趣:http://sqlfiddle.com。我最近才构建它,但它确实支持相当多的数据库类型(包括 MySQL),并且最近在 StackOverflow 上得到了相当多的使用(请参阅 sql wiki)。您可以构建索引和视图,并执行您通常想要在数据库中执行的几乎任何操作。请务必查看一些示例小提琴,或者查看其他 SO 用户如何使用它:
MySQL 查询 - 优化-> http://sqlfiddle.com/#!2/1fde2/39
数据库表中的多级用户 -> http://sqlfiddle.com/#!2/0de1f/7
如何将值与 csv 值进行比较mysql? -> http://sqlfiddle.com/#!2/b642c/4
我想我应该提到的是,SO 的另一个潜在有用功能是每个查询都会显示其执行计划,因此如果多个人提交了 SQL 问题的答案,您可以轻松评估他们的效率,然后相应地投票/接受。
You might be interested in my site: http://sqlfiddle.com. I've built it only recently, but it does support a decent range of database types (including MySQL) and has gotten a fair amount of use lately here on StackOverflow (see the mention on the sql wiki). You can build indexes, and views, and do nearly anything you would normally want to do within a database. Be sure to check out some of the sample fiddles, or see how various other SO users are using it:
MySQL query - optimized -> http://sqlfiddle.com/#!2/1fde2/39
Multilevel Users in the Database table -> http://sqlfiddle.com/#!2/0de1f/7
How to compare a value with a csv value in mysql? -> http://sqlfiddle.com/#!2/b642c/4
I guess I should mention that one other potential useful feature for SO would be that each query displays its execution plan, so if multiple people submitted answers to a sql question, you could easily evaluate their efficiency and then upvote/accept accordingly.
尝试 SQLize。
它有一些烦人的限制,例如无法创建视图,但总的来说,我发现它非常有用。 (提示:
CREATE INDEX
也不起作用,但您仍然可以在CREATE TABLE
内创建索引。)Try SQLize.
It has some annoying limitations, like the inability to create views, but overall I find it very useful. (Tip:
CREATE INDEX
also doesn't work, but you can still create indexes insideCREATE TABLE
.)