커피와 개발자

[MySQL API] mysql_field_table() 본문

데이터베이스/SQL

[MySQL API] mysql_field_table()

광박이 2011. 3. 3. 14:25
728x90
검색된 결과 레코드에서 특정 필드가 속한 테이블 이름을 반환.

【예제】
<html><body>
< ?
$con=mysql_connect("localhost","root","root_password");
$db=mysql_select_db("mydb",$con);
$query="select * from employees";
$res=mysql_query($query);
echo mysql_field_table($res,2);
? >
</body></html>

728x90

'데이터베이스 > SQL' 카테고리의 다른 글

[MySQL API] mysql_free_result()  (0) 2011.03.03
[MySQL API] mysql_field_type()  (0) 2011.03.03
[MySQL API] mysql_field_seek()  (0) 2011.03.03
[MySQL API] mysql_field_name()  (0) 2011.03.03
[MySQL API] mysql_select_db()  (0) 2011.03.03
Comments