mysql判断表中是否存在某一个字段
mysql里判断表中一个字段是否存在可以执行如下sql。select count(*) from information_schema.columns where table_name = '表名' and column_name = '字段名'
mysql里判断表中一个字段是否存在可以执行如下sql
select count(*) from information_schema.columns where table_name = '表名' and column_name = '字段名'
栗子:
select count(*) from information_schema.columns where table_name = 's_info' and column_name = 'id'
版权声明
本站部分原创文章,部分文章整理自网络。如有转载的文章侵犯了您的版权,请联系站长删除处理。如果您有优质文章,欢迎发稿给我们!联系站长:
愿本站的内容能为您的学习、工作带来绵薄之力。
评论