参考:http://jingpin.jikexueyuan.com/article/46978.html Annotation Type SecondaryTables(参考:https://docs.oracle.com/javaee/7/api/javax/persistence/SecondaryTables.html) @Target(value=TYPE) @Retention(value=RUNTIME) public @interface SecondaryTables Speci
一.关于数据库操作的sql语句 -- .创建数据库(在磁盘上创建一个对应的文件夹) create database [if not exists] db_name [character set xxx] -- .查看数据库 show databases;查看所有数据库 show create database db_name; 查看数据库的创建方式 -- .修改数据库 alter database db_name [character set xxx] -- .删除数据库 drop databa
模糊查找db2数据库中的数据库表: select tabname,remarks from syscat.tables where TABNAME like 'DM%' select 'DROP TABLE DW_RPT.'||tabname||';' from syscat.tables where tabschema = CURRENT SCHEMA ----------------------------------------------------------------------
如果统计某数据库中存在多少张数据表,使用如下SQL检索语句即可: SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES WHERE table_schema = '数据库名' GROUP BY table_schema;