摘要: A. 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1e5 + 10; 4 int a[maxn], b[maxn]; 5 6 int main() 7 { 8 int t; cin >> t; 9 int 阅读全文
posted @ 2019-11-17 20:56 滚烫的青春 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1 --定义模式 2 create schema s_t authorization u1 3 --删除模式 4 drop schema s_t cascade 5 --创建数据库 6 create database s_t 7 on primary 8 ( 9 name = 'stu', 10 f 阅读全文
posted @ 2019-11-17 12:27 滚烫的青春 阅读(138) 评论(0) 推荐(0) 编辑