Delete record in sqlce

  • Thread starter Thread starter Guest
  • Start date Start date
"First or second" based on what criteria?? Pass in whatever criteria you
want and execute the delete.

DELETE FROM Job WHERE ID = YourSelectedID
 
I have A and B table in sqlce database,A is master,B is detail.
The customer require when the record count in A is greater than 20,we must
delete
the first record and append new record,just like a queue.How to achieve it?


Thx,
wyghf
 
Thanks.I've solved this problem

Earl said:
"First or second" based on what criteria?? Pass in whatever criteria you
want and execute the delete.

DELETE FROM Job WHERE ID = YourSelectedID
 
Back
Top