Visual Studio Code(VS Code)查詢PostgreSQL拓展安裝教程圖解
1.打開VS Code拓展,搜索postgresql,這時就可以看到在線的支持postgresql的插件,這裡我選擇的第一個插件(下載量最多的);
2.安裝postgresql插件,安裝完成之後,在左側就可以看到插件圖標;
3.點擊插件,輸入連接地址、用戶、密碼、端口等建立數據庫連接(本地已經創建連接,點擊 + 添加新的連接);
3.連接上以後測試數據及結果如下:
create table test (id int primary key, name varchar, create_date timestamp ); select * from test; insert into test values (1, '001', now()); insert into test values (2, '002', now()); select * from test;
4.Mysql也是類似,詳情可參考:Vscode上使用SQL
到此這篇關於Visual Studio Code(VS Code)查詢PostgreSQL拓展安裝的文章就介紹到這瞭,更多相關VS Code查詢PostgreSQL內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- MySQL 5.7常見數據類型
- 淺談PostgreSQL和SQLServer的一些差異
- postgresql兼容MySQL on update current_timestamp問題
- postgresql 刪除重復數據案例詳解
- MySQL 數據類型詳情