首页 > 其他分享 >1、postgres删除与创建schema

1、postgres删除与创建schema

时间:2023-08-23 16:55:20浏览次数:42  
标签:name 删除 创建 drop schema postgres

目录

postgres删除与创建schema

1、删除schema语法

drop schema [schema_name];

或者

drop schema  [if exists] [schema_name] [cascade] [restrict];

参数说明:

参数 说明
drop schema 关键字,删除schema固定语法
if exists 当schema存在的时候执行
schema_name 删除指定的schema
cascade 删除schema依赖的对象,强制删除
restrict postgres默认的选项,当schema为空的时候才能删除

2、创建schema

create schema [schema_name];

或者

CREATE SCHEMA [schema_name] authorization [user];

标签:name,删除,创建,drop,schema,postgres
From: https://www.cnblogs.com/lgxdev/p/17652142.html

相关文章

  • CRUD接口_删除操作
         ......
  • 微信开发之一键删除朋友圈评论的技术实现
    简要描述:删除某条朋友圈的某条评论请求URL:http://域名地址/snsCommentDel请求方式:POST请求头Headers:Content-Type:application/jsonAuthorization:login接口返回参数:参数名必选类型说明wId是String登录实例标识id是String朋友圈idcommentId是int评论id请求参数示例{"wId":"349b......
  • 微信开发之一键删除朋友圈评论的技术实现
    简要描述:删除某条朋友圈的某条评论请求URL:http://域名地址/snsCommentDel请求方式:POST请求头Headers:Content-Type:application/jsonAuthorization:login接口返回参数:参数名必选类型说明wId是String登录实例标识id是String朋友圈idcommentId是......
  • GIS开发与应用(PostgreSQL空间数据库各种查询语句范例以及SQL语句查询空间关系)_postgre
    实验二PG空间数据库应用实验目的:实验准备实验内容及要求实验过程及步骤:1、创建空间数据库nyc,在nyc空间数据库中创建geometries表,对表中插入Point、Linestring、Polygon、PolygonWithHole、collection等几何要素。2、查看geometries表中的几何图形的元数据。使用`ST_G......
  • 使用tidb-toolkit批量删除/更新数据
    作者:realcp1018一、背景简介在日常使用TiDB的场景中经常会遇到此类问题:建表时未使用分区表,导致数据删除困难。想要快速的批量更新数据,但是每次都需要编写繁杂的跑批任务。想要在数亿、数十亿的大表中删除几千完或几百万数据但是却总是遇到“事务大小超出限制”的错误。为解决此......
  • Linux中特殊名字文件的删除方法是什么
    Linux中特殊名字文件的删除方法是什么发布时间:2022-01-2109:19:42 阅读:200 作者:kk 栏目:开发技术活动:Linux服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>今天就跟大家聊聊有关Linux中特殊名字文件的删除方法是什么,可能很多人都不太了解,为了让大家更加了解,小编给大家......
  • 6、oracle迁移到postgres-分页问题
    目录oracle迁移到postgres-分页问题1、oracle使用rownum进行分页2、postgres使用limit进行分页3、使用FETCH统一的分页方式oracle迁移到postgres-分页问题1、oracle使用rownum进行分页select*fromss_stuwhererownum<=10;2、postgres使用limit进行分页select*froms......
  • 3、oracle迁移到postgres-执行动态sql传参不同
    目录oracle迁移到postgres-执行动态sql传参不同1、oracle使用的是:12、postgres使用的是$1oracle迁移到postgres-执行动态sql传参不同在sql字符串中,会动态传入值,使用阿拉伯数据定义传参的个数。1、oracle使用的是:1executeimmediate'select*fromsys_stuwherestu_name=......
  • 2、oracle迁移到postgres-事务提交方式不同
    目录oracle迁移到postgres-事务提交方式不同1、oracle2、postgresoracle迁移到postgres-事务提交方式不同1、oracleoracle默认不自动提交事务,需要手动commit2、postgrespostgres默认自动提交事务,不需要手动commit,导致迁移过来的pck如果有commit需要注释掉......
  • 1、oracle迁移到postgres-执行sql方式execute不同
    目录oracle迁移到postgres-执行sql方式execute不同1、oracle使用executeimmediate2、postgres使用executeoracle迁移到postgres-执行sql方式execute不同1、oracle使用executeimmediateexecuteimmediate'sql';2、postgres使用executeexecuteimmediate'sql';......