• 【Oracle字典表应用】利用字典表查表是否存在


    【Oracle SQL】

    一行流方式:

    select count(*) from all_tables where table_name=upper('your tableName')

    层次化方式:

    select count(*) 
    from all_tables 
    where table_name=upper('your tableName')

    【PG SQL】

    一行流方式:

    select count(*) from information_schema.table where table_schema='your schema' and table_type='BASE TABLE' and upper(table_name)=upper('your tableName')

    层次化方式:

    select count(*) 
    from information_schema.table 
    where 
    table_schema='your schema' and 
    table_type='BASE TABLE' and 
    upper(table_name)=upper('your tableName')

    END

  • 相关阅读:
    大数据面经
    mysql复习(2)
    java容器
    内存管理
    垃圾收集
    输入/输出流
    排序算法的稳定性及其汇总
    java传值与传引用
    linux复习6
    linux复习5
  • 原文地址:https://www.cnblogs.com/heyang78/p/16600713.html
Copyright © 2020-2023  润新知