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
  • 704,970
  • 168
  • 1,303
  • 1,425
user761758
  • 545
  • 2
  • 6
  • 18

1 Answers1

1
SELECT CAST( last_date as DATE) from TableA
radar
  • 13,100
  • 2
  • 23
  • 32