mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 05:02:49 +00:00
21 lines
422 B
SQL
21 lines
422 B
SQL
insert into sys_notice (id, title, type, status, content, created_time, updated_time)
|
|
values (1, 'hahahahahaahahaha', 0, 1, '你好😄
|
|
|
|
```
|
|
print(''fba yyds'')
|
|
```
|
|
|
|
⚡⚡⚡
|
|
|
|
| col1 | col2 | col3 |
|
|
| ---- | ---- | ---- |
|
|
| | | |
|
|
| | | |
|
|
|
|
* 1
|
|
* 2
|
|
* 3
|
|
', '2025-12-15 15:33:16', null);
|
|
|
|
select setval(pg_get_serial_sequence('sys_notice', 'id'),coalesce(max(id), 0) + 1, true) from sys_notice;
|