mirror of
https://github.com/catppuccin/catppuccin
synced 2024-11-10 06:04:21 +00:00
b9bbd77c7f
* docs: restructure & improve contrib docs * chore: rework samples code * docs: fix capitalization & brand names * docs: PR comments & try to standardise palette vs flavor * docs: add sample-programs * docs: update submission guidelines (refs: #1821) * refactor: tidy up docs Co-authored-by: winston <hey@winston.sh>
14 lines
362 B
SQL
14 lines
362 B
SQL
-- DDL section
|
|
create table crm.product (
|
|
id numeric primary key,
|
|
title varchar(255) character set utf8
|
|
);
|
|
-- DML section
|
|
insert into product
|
|
values (1, 'Product1');
|
|
|
|
select count(*) from crm.product;
|
|
select id as ProductID, title as ProductName
|
|
from crm.product where id = :id;
|
|
|
|
\set content `cat data.txt`
|