2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > mysql 查看数据库字段是否存在 mysql查询某张表是否存在某个字段和判断是否存在某个表名...

mysql 查看数据库字段是否存在 mysql查询某张表是否存在某个字段和判断是否存在某个表名...

时间:2022-10-13 03:22:03

相关推荐

mysql 查看数据库字段是否存在 mysql查询某张表是否存在某个字段和判断是否存在某个表名...

Mysql

1、判断一个表是否存在

语法:

SELECT table_name FROM information_schema.TABLES WHERE table_name ='表名';

sql例子:

SELECT table_name FROM information_schema.TABLES WHERE table_name ='t_iov_vehicle_owner_info'

存在:

不存在:

备注,sql也可以这样写:

select count(*) from information_schema.tables where table_name='t_iov_vehicle_owner_info'

2、判断表中一个字段是否存在

语法:

select count(*) from information_schema.columns where table_name = '表名' and column_name = '字段名'

sql例子:

select count(*) from information_schema.columns where table_name = 't_iov_vehicle_owner_info' and column_name = 'id'

------

mysql判断数据库或表是否存在

(1) 判断数据库存在, 则删除:

drop database if exists db_name;(2) 判断数据表存在, 则删除:

drop table if exists table_name;

注: db_name, table_name可用``(1键旁边那个键)号引起来, 也可不引起来.

(1) 如果单纯显示是否存在数据库, 则可用

show databases like 'db_name';

(2) 单纯显示是否存在数据表, 则可用

show tables like 'table_name';

注: 这里db_name, table_name必须用''(单引号)引起来.

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。