java 怎么检测MySQL表的存在
发布网友
发布时间:2022-04-08 02:27
我来回答
共4个回答
热心网友
时间:2022-04-08 03:57
1、sql语句判断数据库表是否存在:
sql:select * from user_all_tables where table_name='tableName'
如果结果为空则表示不存在,如何结果不为空则表示存在;
2、java如何判断数据库表是否存在
可以利用上面的sql,执行获取结果,相应的java代码如下:
String helperName= delegator.getGroupHelperName("com.asiainfo");
SQLProcessor sqlProcessor= new SQLProcessor(helperName);
String sql = "select * from user_all_tables where table_name='"+table+"'";
ResultSet rsTables =sqlProcessor.executeQuery(sql);
if(rsTables.next()){
Debug.logWarning("table:"+table+" exists", mole);
}else{
Debug.logWarning("table:"+table+" does not exist", mole);
}
热心网友
时间:2022-04-08 05:15
select * from information_schema.TABLES where table_schema ='databaseName' and table_name = 'tableName';
如果结果是空就不存在。
databaseName:要查询的数据库名称
tableName:要查询的表名称
热心网友
时间:2022-04-08 06:49
从information_schema数据库tables表中查询
热心网友
时间:2022-04-08 08:41
mysql exists 语法追问可以具体一些么?