0

I have a table with dates & times in columns.

I need to select the date portion only from a column named last_date.

I see all the information on selecting, but they do not include a column name.

Could someone point out how to select the date portion from a field in a table using the column name??

Thank you

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
user761758
  • 565
  • 2
  • 6
  • 18

1 Answers1

1
SELECT CAST( last_date as DATE) from TableA
radar
  • 13,270
  • 2
  • 25
  • 33