I am using an Azure SQL database with DataGrip. I would like to create a view connecting certain tables within my database.
Does DataGrip have a tool for doing this? If so, how can I do it?
It's relatively easy in Microsoft SQL Server Management Studio. I would right click the Views folder and select 'New View...'
create view ...
? – a_horse_with_no_name