工具/材料:Management Studio。
1、首先在桌面上,点击“Management Studio”图标。
2、之后在该界面中,点击左上角“新建查询”选项。
3、接着在该界面中,输入查询数据库是否有某个字段的sql语句“select count(*) from information_schema.columns where table_name = 'test1' and column_name = 'grade'”。
4、然后在该界面中,点击左上方“执行”按钮。
5、最后在该界面中,显示查询数据库有某个字段。
查询数据库中所有表名称的语句
SELECT table_name, table_type, engine
FROM information_schema.tables
WHERE table_schema = '数据库名称'
ORDER BY table_name DESC;
查找mysql数据库中所有包含特定名字的字段所在的表
select * from INFORMATION_SCHEMA.columns
where COLUMN_NAME Like '%placement%';
查看数据库表的所有字段
desc 表名;