Mysql从表中选择数据..和echo值,其中id = $ id

时间:2016-07-10 10:29:26

标签: java php html mysql

在Mysql php中我需要使用

从数据库中获取所有数据
 select * from table_name

echo value in page where id = 1 

我有一个包含5列和6行的表,我需要根据列ID

来回显值

对于exm。表

id  -- name -- age -- dob -- remarks
1  -- rajju  -- 20 -- 24/12/2015  -- good
2  -- prasad  -- 15  -- 12/2/2010 -- bad
3  -- kranti  -- 22  -- 05/05/2000 -- average

现在我需要选择所有数据库和

echo value like <`echo $name where id=1` > your health is <`echo $remarks where id=1`> better then <`echo $name where id=2`>

我的最终价值会是这样的

Dear Raju your health is good better then prasad

请有需要

2 个答案:

答案 0 :(得分:1)

只需使用

 select * from table_name where id = 1 

Reference

答案 1 :(得分:0)

您只需要与1个用户进行比较吗? 如果是这样,你可以这样做

$mainid = 1; //(you can get this value dynamically)
$compareid=2; //(you can get this value dynamically)
$result1=(SELECT * FROM table WHERE id=$mainid);
$result2=(SELECT * FROM table WHERE id=$compareid);

现在你可以使用值

<?php echo Hello $result1->name your health seems better than $result2->name.