Jump to content

kobbe

Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kobbe's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have a table with: id, email, typeofmember, somethingelse I need to select DISTINCT email and so only email field got selected by DISTINCT. When I do: SELECT DISTINCT email, typeofmember, somethingelse FROM table; I still don\'t get \"unuiqe\" email... After reading alot of posts here I\'ve tested this: $temp = mysql_query ("CREATE TEMPORARY TABLE temp_email_db AS SELECT DISTINCT email FROM fint_mail_db WHERE mailtyp=$mailtyp"); $result = mysql_query ("SELECT a.email AS email, a.mailtyp AS mailtyp, a.id_code AS id_code, a.id AS id FROM fint_mail_db AS a, temp_email_db AS b WHERE a.email=b.email"); $temp = mysql_query ("DROP TABLE temp_email_db"); But that does not work either cause I need it by id... and if I do it by id email doesn\'t get distinct I need help Thx in advance, sry for my bad explaining... Edit: WIIIIIIIIII =) I did it =) *happy again*
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.