蓝天 批量生成字段

Posted 司马东阳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝天 批量生成字段相关的知识,希望对你有一定的参考价值。

$tables = $db->query("select table_name from information_schema.tables where table_schema=‘yuyue‘ and table_name like ‘patient_%‘ ");
for($i=0;$i<1100;$i++)
{
$arr[] = ‘patient_‘.$i;
}
foreach($tables as $tbl)
{
//var_dump($tbl);
$tbl = $tbl[‘table_name‘];
if(in_array($tbl,$arr))
{
//判断是否有字段
$sql_column = "select column_name from information_schema.columns where table_schema=‘yuyue‘ and table_name=‘{$tbl}‘ and column_name = ‘cname‘";
$res_column = $db->query($sql_column);
if(empty($res_column)){
$sql ="alter table {$tbl} add cname varchar(50) not null default ‘0‘ comment ‘所属咨询‘";
//$sql ="alter table {$tbl} drop cname ";
//echo $sql.‘<br>‘;
$res = $db->query($sql);
var_dump($tbl);
var_dump($res);
}

}

}


die;

以上是关于蓝天 批量生成字段的主要内容,如果未能解决你的问题,请参考以下文章

oracle中批量生成字段类型的脚本

java批量生成用例脚本-保留字关键词的用例脚本生成

Word/WPS 利用邮件合并批量生成文档

Word/WPS 利用邮件合并批量生成文档

mysql 进行update时,要更新的字段中有单引号或者双引号导致不能批量生成sql的问题

如何对批量的Excel数据生成sql脚本啊?