1.打開VS Code拓展,搜索postgresql,這時就可以看到在線的支持postgresql的插件,這里我選擇的第一個插件(下載量最多的);
2.安裝postgresql插件,安裝完成之后,在左側(cè)就可以看到插件圖標;
3.點擊插件,輸入連接地址、用戶、密碼、端口等建立數(shù)據(jù)庫連接(本地已經(jīng)創(chuàng)建連接,點擊 + 添加新的連接);
3.連接上以后測試數(shù)據(jù)及結(jié)果如下:
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
文章來源:腳本之家
來源地址:https://www.jb51.net/article/204596.htm
申請創(chuàng)業(yè)報道,分享創(chuàng)業(yè)好點子。點擊此處,共同探討創(chuàng)業(yè)新機遇!