You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sp_get_images.sql 150B

1234
  1. SELECT i.id, i.name, i.user_id, i.date
  2. FROM images i
  3. WHERE (CASE WHEN _only_mine THEN i.user_id = _user_id_me ELSE TRUE END)