When the result of a query exists, I want to know the name of the row(s) that have the correct results:

$query = "SELECT Id FROM Programacao WHERE ID = 1";
    $curDate = date("Y-m-d H").':00:00';
    $query = "SELECT Id 
    FROM Programacao 
    WHERE Data1 = '$curDate'
       OR Data2 = '$curDate'
       OR Data3 = '$curDate'"
$result = mysql_query($query);
while ($row = mysql_fetch_array($result)){}

simply talking its if(Data1 == curDate)return Data1; if(Data2 == curDate)return Data2....

Sorry for the bad english.

link|improve this question

57% accept rate
Why do you need this information? You know the table name when you write the query, so why ask the database for something you already know, or are you confusing "tables" with "rows"? – JamWaffles Sep 18 '11 at 1:14
I don't understand your question. Aren't you querying a single table in that statement? – Carl F. Sep 18 '11 at 1:16
Your table name is Programacao. Also that query limits the result set to either being empty or returning "1". Please clarify what you are trying to do. – gview Sep 18 '11 at 1:16
Sorry edited the question – Vinicius Albino Sep 18 '11 at 1:26
feedback

3 Answers

Well it would be Programacao from your query. But if you needed it dynamically you could try functions like mysql_table_name() or mysql_field_name().

link|improve this answer
feedback

A select statement does not go into a table.
It goes into a resultset.
Resultsets do not have names, they just are.

http://en.wikipedia.org/wiki/Result_set

link|improve this answer
feedback

Perhaps you mean this? (either with UNION or UNION ALL):

$query = "
  SELECT Id
       , 'Data1' AS name 
  FROM Programacao 
  WHERE Data1 = '$curDate'
UNION 
  SELECT Id
       , 'Data2' 
  FROM Programacao 
  WHERE Data2 = '$curDate'
UNION
  SELECT Id
       , 'Data3' 
  FROM Programacao 
  WHERE Data3 = '$curDate'
         " ;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.