06 2019 档案

摘要:原文分隔线====================== while writing go this morning, I found that the wrong code are not under lined by red line This is really difficult for me and time consuming to keep writing. After 1 hou... 阅读全文
posted @ 2019-06-17 15:28 霜末之冬 阅读(2476) 评论(0) 推荐(0)
摘要:.a r 阅读全文
posted @ 2019-06-05 11:57 霜末之冬 阅读(189) 评论(0) 推荐(0)
摘要:(1)使用命令行连接数据库 psql -U postgres -h localhost -p 5433 (2)列出所有的数据库 \l -- 查看所有数据库 (3)进入某个数据库 \c name -- name是表名 (4)列出数据库的所有数据表和视图 \d -- 列出所有的数据表和视图 \dt \d tablename 删除表 drop table (5)列出某个数据表... 阅读全文
posted @ 2019-06-04 17:29 霜末之冬 阅读(4279) 评论(0) 推荐(0)