I KNOW there has to be a one liner for this, I've tried a few things with no success.
This function I made, on the other hand, while using more than on line and is a little more CPU intensive, does the trick without any headache:
<?php
//Pass a table name
function mysql_get_prim_key($table){
$sql = "SHOW COLUMNS FROM $table";
$ts = mysql_query($sql);
$cts = mysql_num_rows($ts);
while($ats = mysql_fetch_array($ts)){
if($ats['Key'] == "Pri"){return($ats['Field']);}
}
return(false);
}
// Returns the column name of primary key, or false if no primary key
?>
I was messing with
<?php
echo "<pre>";
$sql = "SHOW COLUMNS FROM $table";
$cts = mysql_num_rows($ts);
while($ats = mysql_fetch_array($ts)){
print_r($ats);
}
?>
and I see the output [Key] => PRI on the primary key column, but I can not for the life of me figure out how to put this into a single SQL statement like:
<?php
$sql = "SHOW COLUMNS FROM $table WHERE Key='PRI'";
?>
I just can't get it to work.
Might this trigger someone to think of something? I'd like to find a one liner for this.
Thanks!