1 Star 0 Fork 0

倾盖/db

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
db.sql 405 Bytes
一键复制 编辑 原始数据 按行查看 历史
倾盖 提交于 2023-08-02 00:09 +08:00 . init:使用sqlx链接Postgresql
drop table if exists course;
create table course
(
id serial primary key,
teacher_id INT not null,
name varchar(140) not null,
time TIMESTAMP default now()
);
insert into course
(id, teacher_id, name, time)
values (1, 1, 'First', '2022-01-17 05:40:00');
insert into course
(id, teacher_id, name, time)
values
(2, 1, 'Second course', '2022-01-1 05:45:00');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/QGai/db.git
git@gitee.com:QGai/db.git
QGai
db
db
master

搜索帮助