Using SQL query to determine if a table exists

前端 未结 6 1867
清歌不尽
清歌不尽 2020-12-31 06:06

Guys is there any other way to determine a table exists other than below

  1. select count(*) from where rownum =1
  2. select
    6条回答
    •  遥遥无期
      2020-12-31 06:39

      Look in the schema, might event be able to use sys.objects and check for a type at the same time.....

      Something like

    提交回复
    热议问题