I have a Delphi application where I show a list of games that were played from such a request:
select g.*, gt.id, gt.descr from GAMES g inner join game_types gt on gt.id = g.game_type order by game_date DESC
When I click the delete button in DBNavigator, the combined record from the game_types table is also deleted. This is a problem because many other games can be of the same type.
What do I need to do to make sure that only the game is deleted, but not the type of game?
Frank luke
source share