Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know if a name refers to mysql table or mysql view in a php script

Tags:

People also ask

Can we have same name table and view?

No, you cannot give the same name for view and table in MySQL.

How do I find the table name in MySQL?

The syntax to get all table names with the help of SELECT statement. mysql> use test; Database changed mysql> SELECT Table_name as TablesName from information_schema. tables where table_schema = 'test'; Output with the name of the three tables.

How we connect and fill the table in MySQL database defined by the help of PHP code?

php $servername = "localhost"; $database = "database"; $username = "username"; $password = "password"; // Create connection $conn = mysqli_connect($servername, $username, $password, $database); // Check connection if ($conn->connect_error) { die("Connection failed: " .


I can select all tables in a database like this

$tables = array();
$result = mysql_query('SHOW TABLES');
while($row = mysql_fetch_row($result))
{
  $tables[] = $row[0];
}

And following code populate $return variable which can be used to backup the database.

  foreach($tables as $table)
  {
    $result = mysql_query('SELECT * FROM '.$table);
    $num_fields = mysql_num_fields($result);

    $return.= 'DROP TABLE IF EXISTS '.$table.';';
    $row2 = mysql_fetch_row(mysql_query('SHOW CREATE TABLE '.$table));
    $return.= "\n\n".$row2[1].";\n\n";

    for ($i = 0; $i < $num_fields; $i++) 
    {
      while($row = mysql_fetch_row($result))
      {
        $return.= 'INSERT INTO '.$table.' VALUES(';
        for($j=0; $j<$num_fields; $j++) 
        {
          $row[$j] = addslashes($row[$j]);
          $row[$j] = ereg_replace("\n","\\n",$row[$j]);
          if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
          if ($j<($num_fields-1)) { $return.= ','; }
        }
        $return.= ");\n";
      }
    }
    $return.="\n\n\n";
  } 

My database has two mysql views. Above code generates "INSERT INTO...." string even for mysql views which I need to avoid. So before starting the 'for loop' to generate "INSERT INTO.." values I need to check if $table is actually a mysql table or view. How to identify whether a name refers to mysql table or mysql view?