Re: conditional insert - Mailing list pgsql-general

From Sim Zacks
Subject Re: conditional insert
Date
Msg-id 4E64A79E.7030503@compulab.co.il
Whole thread Raw
In response to Re: conditional insert  (Pau Marc Muñoz Torres <paumarc@gmail.com>)
Responses Re: conditional insert
List pgsql-general
<meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
    body p { margin-bottom: 0cm; margin-top: 0pt; }

  <body style="direction: ltr;"
    bidimailui-detected-decoding-type="latin-charset" bgcolor="#ffffff"
    text="#000000">
    On 09/05/2011 01:37 PM, Pau Marc Muñoz Torres wrote:
    <blockquote
cite="mid:CADFuJLi3K0X1A7OwR+9_neWjKCEXtYYyMP_n=x5z=D2+GNCTNw@mail.gmail.com"
      type="cite">i don't  see it clear, let me put an example

      i got the following table

      molec varchar(30)
      seq varchar(100)

      where I insert my values

       lets image that i have a record introduced as ('ubq',
      'aadgylpittrs')

      how i can prevent to insert another record where molec='ubq' ?

      thanks


    Either put a unique constraint on molec or do
    insert into tbl(molec,seq)
    select 'ubq', 'aadgylpittrs' where not exists(select molec from tbl
    where molec='ubq')

pgsql-general by date:

Previous
From: Pau Marc Muñoz Torres
Date:
Subject: Re: conditional insert
Next
From: Pau Marc Muñoz Torres
Date:
Subject: Re: conditional insert