select statement?

  • Thread starter Thread starter somersbar
  • Start date Start date
S

somersbar

i have a table with a list of films showing at a particular time, on a
particular day. some films show more than once in that day. how can i
get what films are showing that day, without getting the multiple
occurrences of films that day? i.e. no repeated values.
 
i have a table with a list of films showing at a particular time, on a
particular day. some films show more than once in that day. how can i
get what films are showing that day, without getting the multiple
occurrences of films that day? i.e. no repeated values.

SELECT DISTINCT film_name
FROM table_name
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top