Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sql question

Status
Not open for further replies.

savok

Technical User
Jan 11, 2001
303
AT
using the following gives me a list of all the codes after 05/16/2000, now if i wanted it to give me a list of only the codes ON 05/16/2000 what would i do? I changed the > to = and it didnt work. Why? thanks

select class_code from class where date_start > to_date('05/16/2000', 'MM/DD/YYYY')
 
Try using "LIKE" instead of "=". That should work.
 
worked wonders! thanks a lot :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top