Tagged Questions

2
votes
1answer
103 views

SQL Server delete query involving two tables

So I have tables A and B in SQL Server, and columns a and b respectively. I want to do the following in pseudo-query command, but I can't seem to figure it out. I want to DELETE FROM A WHERE a < ...
1
vote
2answers
540 views

SQL: Complex Deletion help

I basically created some tables to play around with: I have Two main tables, and a Many-Many join table. Here is the DDL: (I am using HSQLDB) CREATE TABLE PERSON ( PERSON_ID INTEGER GENERATED ...