object Form1: TForm1
  Left = 192
  Top = 107
  Width = 696
  Height = 480
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object DBGrid1: TDBGrid
    Left = 0
    Top = 120
    Width = 688
    Height = 333
    Align = alBottom
    DataSource = DataSource1
    TabOrder = 0
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = 'MS Sans Serif'
    TitleFont.Style = []
  end
  object Query1: TQuery
    Active = True
    DatabaseName = 'DBDEMOS'
    SQL.Strings = (
      'select orders.*,country.* from orders,country')
    UpdateObject = UpdateSQL1
    Left = 200
    Top = 32
  end
  object DataSource1: TDataSource
    DataSet = Query1
    Left = 160
    Top = 32
  end
  object UpdateSQL1: TUpdateSQL
    Left = 280
    Top = 32
  end
end.
你生成一个这样的表单,然后再编写更新的代码就行了