2
MySQL表使用SHOW表,然後顯示完整柱我得到這個數組創建一個從陣列
Array
(
[tabel_de_test] => Array
(
[0] => Array
(
[Field] => id
[Type] => int(11)
[Collation] =>
[Null] => NO
[Key] => PRI
[Default] =>
[Extra] => auto_increment
[Privileges] => select,insert,update,references
[Comment] => comentariu
)
[1] => Array
(
[Field] => numee
[Type] => varchar(100)
[Collation] => utf8_unicode_ci
[Null] => NO
[Key] =>
[Default] =>
[Extra] =>
[Privileges] => select,insert,update,references
[Comment] =>
)
)
)
我試圖把這個回MySQL的使用功能
function tosql($tbl_name,$fields)
{
foreach($fields as $f_id => $f_arr)
{
$in.=''.$f_arr['Field'].' '.$f_arr['Type'].' '.$f_arr['Extra'].',';
}
return 'CREATE TABLE '.$tbl_name.' ('.trim($in).')';
}
不過,我需要的所有參數,不只是字段名稱,類型和額外的。 如何正確地做到這一點?
您的查詢失敗,你需要找出原因。這樣做,你會看到錯誤。 –
解釋你的評論! – degeaba
https://dev.mysql.com/doc/refman/5.7/en/show-create-table.html不是你在做什麼? – Blag