mysql命令区别及示例

发布于 2024-12-25 05:06:26 字数 204 浏览 3 评论 0原文

我是 mysql 语言的新手,无法理解程序和函数之间的区别,有人能回答在什么情况下应该使用这个例程吗?


还有一些例子=>我有名为“data”的表和名为“id”(主键)、“local”的列。这个本地包含多个完全相同的数据。我想搜索这个“数据”(并在使用它进行结果操作之后)表的每个ID,该表本地等于(例如)“某物”

请回答这个问题......谢谢

I'm new in mysql language and can not understand difference between procedures and functions, can anyone answer in which case should be use this routines ?


Also have some example => I've table named "data" and columns named "id"(primary key) , "local". this local includes multiple exactly same data. I want to search every id of this "data" (and after result manipulate with it) table which local equal to (for instance) 'something'

Please answer in this question ... Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

违心° 2025-01-01 05:06:26

功能:

 select <function>(column) from table where <condition>;

过程:

 call <procedure>( param0, param1 );

获得结果:

 select * from <table> where data like "%something%";

Functions:

 select <function>(column) from table where <condition>;

Procedure:

 call <procedure>( param0, param1 );

To get your result:

 select * from <table> where data like "%something%";
毅然前行 2025-01-01 05:06:26

我想你使用 php 和 mysql 。

你的查询应该是

$result = mysql_query("SELECT * FROM data WHERE local='something'");
while($row = mysql_fetch_array($result))
{
     // here you manipulate with your data
     // for example:
     echo $row['id'];
}

I suppose that you use php with mysql.

your query should be

$result = mysql_query("SELECT * FROM data WHERE local='something'");
while($row = mysql_fetch_array($result))
{
     // here you manipulate with your data
     // for example:
     echo $row['id'];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文