function:mysql_field_flags ( result, column );
return type:string
content:ใช้คืนค่า รายละเอียดคุณสมบัติเฉพาะ ของคอลัมน์ที่กำหนด ใน result โดยจะคืนค่า false ถ้าเกิดความผิดพลาดขึ้น
เช่น not_null, primary_key, unique_key, multiple_key, blob, unsigned,
zerofill, binary, enum, auto_increment, timestamp
example:$conn = mysql_connect ( "localhost", "root", "1234" );
$sql = "SELECT * FROM employee INNER JOIN position ON employee.position_id = position.id";
$result = mysql_db_query ( "dblabcode", $sql, $conn );
echo mysql_field_flags ( $result, 2 );