Skip to content
Advertisement

Deleting rows within a SQL select query

Sorry this is my first time writing a post and I have only started my coding journey, so I will probably not write this post very well. I’ve tried googling this issue but to no avail (at least not in a way I can understand it).

I’ve written a SQL SELECT query and it works, but I want to delete some rows in it before I export the data. I can only see the views of the tables and I can’t create any new tables (as in I don’t have permissions to do it and getting them is not an option).

From what I have read I can use the DELETE query, where I put my SELECT query after DELETE FROM but before the WHERE. In all the examples that I have seen people put in the name of the table they were deleting from after DELETE FROM, but as I understand I don’t have any name to put there as I deleting it from a query. I wonder if I need to adjust my SELECT code in some way for this to work.

Does anyone have any examples or suggestions how to make it work? Whenever I try, Microsoft SQL Server Management Studio seems to highlight that the problem is with my SELECT statement, but as I have noted, if I run it on itself it does the job. Microsoft SQL Server Management Studio seems to also think that my final WHERE (which should apply to the DELETE FROM) applies to the SELECT query.

The alternative is I just download my select results in clear them in R, but I am trying to learn… I am happy to post the code, but my SELECT query is a couple of pages long, so I wonder if there is any sense….

Thanks!


OK here is more info, my select query is about 9 unions long, each similar to the join below (sorry, slightly edited)

I need to delete the rows from my query where all the the values for OxfordKnee 1-12 are NULL, so as long as a row has something for one of these values I am keeping it. I’ve tried to add to AND NOT B.Answer_Label_Left_Knee_Describe_Pain_En = NULL at the end of my WHERE clause just to try this out but it returns a completely empty table…

Advertisement

Answer

Consider using a where of:

Alternatively use not exists and correlated subquery if you can define the set you don’t want

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement