Jump to content

pecoes

Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling
  • Location
    amsterdam, nl

pecoes's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Well, MySQL is easier to learn than PostgresSql, Oracle or MSSQL and it\'s certainly faster.
  2. MySQL doesn\'t support subqueries. But then again, sometimes it does: SELECT * FROM table WHERE id=(SELECT MIN(id) FROM table) OR id=(SELECT MAX(id) AS last FROM table); You will need MySQL 4.1 or later however. In earlier versions you could try: SELECT @max_id:=MAX(id), @min_id:=MIN(id) FROM table; SELECT * FROM table WHERE id=@max_id OR id=@min_id; MySQL has its limitations, you know
×
×
  • 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.