3
I have the table Pitches with the following fields:
CREATE TABLE [LANCAMENTO](
  [ID] INTEGER PRIMARY KEY ASC AUTOINCREMENT NOT NULL UNIQUE, 
  [VALOR] DECIMAL(8, 2), 
  [DATE_BUY] DATETIME, 
  [DESCRIPTION] VARCHAR(150), 
  [TYPE_RELEASE] VARCHAR(1), 
  [ORGANIZATION] VARCHAR(50), 
  [ID_USUARIO] INTEGER NOT NULL REFERENCES USUARIOS([ID]));
I want to know how to catch only Time or the Date country DATE_BUY.
i even tried to do so only that I think I did something wrong. Your reply was 10 Thanks.
– Edu Mendonça