Announcement

Collapse
No announcement yet.

update mit subquery

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • update mit subquery

    hallo,

    ich habe Probleme mit der Interbase-SQL-Syntax.
    Ich möchte ein update mittels subquery ausführen:

    im SQLSERVER:
    update tabelle1
    set f1=tabelle2.feld1,f2=tabelle2.feld2
    from tablle2
    where tablle1.id=tabelle2.id

    oder andere:
    update tablle1 set
    (f1,f2)=
    ((select feld1,feld2 from tabelle2
    where tablle1.id=tabelle2.id))

    kann mir noch jemand sagen wo ich eine vollständige
    Interbase (dialect 1) SQL-Syntax herbekomme

    Friedel

  • #2
    Schon mal hier geschaut? http://info.borland.com/techpubs/interbase/ <BR>
    Oder hier? http://www.firebirdsql.org/index.php?op=doc

    Firebird und Interbase sollten, was den Syntax angeht, identisch sein.

    cu Joche

    Comment

    Working...
    X