Christoph: Datenbank query

Hallo,

ich versuche ein DB Update auf eine Tabelle zu machen, was ja nicht das Problem ist. Nur möchte ich nur die Felder _nicht_ updaten die einen gewissen Text enthalten im Feld.

Der Text steht bei mir in einem arry:
$no_pos_array = array("Text","und noch mehr Text");
Nur wie spreche ich jetzt das mit dem Updatebefehl an? Also mit der WHERE Funktion?

Liebe Grüße

Christoph

  1. hi,

    Also mit der WHERE Funktion?

    natürlich, wie denn sonst.

    gruß,
    wahsaga

    --
    I'll try being nicer if you'll try being smarter.
    1. Hi

      natürlich, wie denn sonst.

      Ja aber wie? gib mir bitte was handfestes.

      Grüße

      Christoph

      1. hi,

        Ja aber wie? gib mir bitte was handfestes.

        wie wählst du denn bei einem SELECT aus, dass du datensätze mit bestimmten feldinhalten _nicht_ im ergebnis haben willst ...?

        gruß,
        wahsaga

        --
        I'll try being nicer if you'll try being smarter.
  2. Nur wie spreche ich jetzt das mit dem Updatebefehl an? Also mit der WHERE Funktion?

    Klar, schon mal probiert?

    UPDATE Table set ColumnX='Value' WHERE TableID=1;

    1. UPDATE Table set ColumnX='Value' WHERE TableID=1;

      AXO nicht... dannn:

      UPDATE Table set ColumnX='Value' WHERE NOT TableID=1;

      oder halt was mit "LIKE"...

      1. Ok danke, das wars!

    2. Hallo,

      hast du mein Post auch nur Ansatzweise verstanden?

      Klar, schon mal probiert?

      schon mehr als genug!

      UPDATE Table set ColumnX='Value' WHERE TableID=1;