PG Chat Participant - Visual Studio Marketplace
This is an experimental chat participant that uses Copilot to query your PostgreSQL database.
The entire
public
schema of your database will be loaded up to Copilot for each query. looking for albums by AC/DC:
@pg show all albums by 'AC/DC'
Copilot's response:
SELECT album.title
FROM album
JOIN artist ON album.artist_id = artist.artist_id
WHERE artist.name = 'AC/DC';
GitHub - microsoft/copilot-pg: A DBA copilot extension
No comments:
Post a Comment