SQL基本コマンド
code:txt
~/fBootcamp/sinatra_memoapp db*
❯ brew services start postgresql
~/fBootcamp/sinatra_memoapp db*
❯ psql -Upostgres
psql (14.1)
Type "help" for help.
postgres-# \q
~/fBootcamp/sinatra_memoapp db* 1m 10s
❯ psql -Upostgres sinatra
psql (14.1)
Type "help" for help.
sinatra=# SELECT * FROM memo;
id | title | content
----+------------+--------------------------------
25 | ひなた珈琲 | ネルドリップ/焼き菓子
26 | スロープ | 自家焙煎とケーキ・タルトタタン
29 | 茶とあん | 日本茶カフェ、お茶と餡
32 | つちとね | 自家製野菜のご飯
(4 rows)
sinatra=# SELECT * FROM memo order by id desc;
id | title | content
----+------------+--------------------------------
32 | つちとね | 自家製野菜のご飯
29 | 茶とあん | 日本茶カフェ、お茶と餡
26 | スロープ | 自家焙煎とケーキ・タルトタタン
25 | ひなた珈琲 | ネルドリップ/焼き菓子
(4 rows)