Jump to content

sql query question


blacknight

Recommended Posts

im tryingt to make an upgrade script for a database and need to see if spacific colums are present in the table i have tryed

[code]$sql_str = "SHOW COLUMNS FROM table_name LIKE 'approved'";
$this->setSqlDebug("checkcolumDb: $sql_str");
      $result = $wowdb->query($sql_str);
      if ($wowdb->num_rows($result) == 0){
      echo "no colum";
      $t++;
     
      }[/code]
but no column is allways echoed if it exists or not i need tit to not return if it does any one have any help?
Link to comment
Share on other sites

Here, this should work...

[code]<?php
$MyTableName = "username"; //Your table name goes here
$sql = "SHOW COLUMNS FROM table_name WHERE Field = '$MyTableName'";
$result = mysql_query($sql);
$count = mysql_num_rows($result);

if ($count > 0){
  echo "The column name already exists";
}
else {
  echo "There is no column with that name";
}
?>[/code]

Regards
Huggie
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.