我是mysql语言的新手,无法理解程序和功能之间的区别,任何人都可以回答在哪种情况下应该使用这个例程吗?
还有一些例子=>我的表名为“data”,列名为“id”(主键),“local”。这个本地包括多个完全相同的数据。我想搜索这个“数据”的每个id(并在结果操作之后)表,本地等于(例如)'something'
请回答这个问题......谢谢
答案 0 :(得分:0)
功能:
select <function>(column) from table where <condition>;
步骤:
call <procedure>( param0, param1 );
获得结果:
select * from <table> where data like "%something%";
答案 1 :(得分:0)
我想你使用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'];
}