摘要:
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 阅读全文
摘要:
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 阅读全文