メンバーテーブルと資産テーブルの2つのテーブルからビューを作成し、メンバーテーブルの名前を1つのフィールドとして連結したい INCHARGE
これが私のコードです $host="localhost"; $db="ccm_db"; $pass=""; $user="ルート";
$conn=mysql_connect($host,$user,$pass) or
die("cannot connect to the database".mysql_error());
mysql_select_db($db,$conn)or
die("cannot select the database".mysql_error());
mysql_query("select a.asset_name as ASSET_NAME,
m.(a.fname,' ',a.mname,' ',a.lname) as INCHARGE from asset a,members m");
私は、exel にエクスポートするときにフルネームを持たせるために、これが必要です。
何か助けて????