Java教程

获取数据库表名的sql

本文主要是介绍获取数据库表名的sql,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
/**
 * 获取MySql数据库下所有的表名
 *
 * @param dbName 数据库名称
 * @return
 */
public static String getMySqlAllTableName(String dbName) {
    return "SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES where TABLE_SCHEMA='" + dbName + "'and Table_type='BASE TABLE'";
}

/**
 * 获取Oracle数据库下所有的表名
 *
 * @return
 */
public static String getOracleAllTableName() {
    return "select table_name from user_tables order by table_name";
}

/**
 * 获取sqlite数据库中所有表名
 *
 * @return
 */
public static String getSqliteTables() {
    return "select name from sqlite_master where type='table' and name<>'sqlite_sequence'";
}

/**
 * 获取sqlServer数据库中所有表名
 *
 * @return
 */
public static String getSqlServerTables() {
    return "select Name from SysObjects Where XType='U' order by Name";
}

/**
 * 获取PostgreSql数据库中所有表名
 *
 * @return
 */
public static String getPostgreSqlTables() {
    return "SELECT table_name FROM information_schema.tables WHERE table_schema ='public AND table_type ='BASE TABLE'";
}
这篇关于获取数据库表名的sql的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!