In almost all SQL intellisense, when you type Tab after * or sometable in the following example, all column names can be auto filled. But I can't figure out where this is. Can someone give a hint? Thanks.
SELECT * FROM sometable
INSERT INTO sometable
"Star expanstion" should work for SQL in Azure Data Studio and SQL Server Management Studio and Visual Studio, out of the box. The implementation should be:
I know the code exists to do this because SSDT does this star expansion already, as do many third party tools. SSMS allows you to drag a column folder out of the object explorer, and thought the quality of that implementation is very poor (square brackets all the time for tables but never for views, for example) it does yield a list of columns. Hovering over the "*" also produces a tooltip with the list of columns.
Any news here? This is a MAJOR adoption blocker...
Bumping this, Azure Data Studio is unusable without this feature.
Any news here ?
Asking for the same feature, could be awesome to implement!
Bumping to keep this alive... please implement!!!
I too will bump this to ask you to implement. It feels like it should be quite easy, if you hover over the * right now it lists the columns there in a popup, surely making it type this out for you is possible?
While I am using ADS I feel like I shouldn't simply because star expansion is missing. Please, implement this.
Bump.
Bumping, this feature would be insane.
Please add this. The lack of this feature slows me down a lot. It is biggest reason why I'm not moving over to ADS.
Thank you.
To all who have been holding your breath. This feature as well as many many others that Azure Data Studio are lacking are available in IntelliJ IDEA / Datagrip.
I did not make the transition earlier because I needed to log into my MSSQL DB on my Mac through Kerberos and I thought ADS was the only way to do it. I figured it out with IntelliJ and now I am permanently getting rid of ADS.
Most helpful comment
"Star expanstion" should work for SQL in Azure Data Studio and SQL Server Management Studio and Visual Studio, out of the box. The implementation should be:
I know the code exists to do this because SSDT does this star expansion already, as do many third party tools. SSMS allows you to drag a column folder out of the object explorer, and thought the quality of that implementation is very poor (square brackets all the time for tables but never for views, for example) it does yield a list of columns. Hovering over the "*" also produces a tooltip with the list of columns.