Обсуждение: About Date field

Поиск
Список
Период
Сортировка

About Date field

От
Edouard DESSIOUX
Дата:
Hello,

I use a simple table, in which i've a field
of type date.
Is is possible to insert the current date in
this field, I mean using a special variable
that has the systeme date.

--
Edouard DESSIOUX
Proverbe chien :
"Si ca se mange pas,
 Si ca se baise pas,
 Pisse dessus !!"

Re: [GENERAL] About Date field

От
jose soares
Дата:

Edouard DESSIOUX ha scritto:

> Hello,
>
> I use a simple table, in which i've a field
> of type date.
> Is is possible to insert the current date in
> this field, I mean using a special variable
> that has the systeme date.
>

Try:
INSERT INTO table1 VALUES(current_date);

José