Backing up from one table to another and adding date/time information
Backing up from one table to another and adding date/time information
am 22.01.2008 21:29:48 von kenoli
I want to insert the data from one record in one table into another
table in a mysql database, adding the current date and time to a field
in the table the data is going into. Thus when a record is changed, I
am backing it up and indicating the date and time of the backup in a
"date" field.
The following is the method for copying data from a field in one table
to another.
INSERT INTO tbl_2 (fld_1, fld_2) SELECT tbl_1.fld_1, tbl_1.fld_2 FROM
tb_1 WHERE tbl_1.fld_id = [some record number];
How can I mix this with adding the new date/time data to a date field
in table 2 as well?
Thanks,
--Kenoli
Re: Backing up from one table to another and adding date/time
am 22.01.2008 22:00:19 von zeldorblat
On Jan 22, 3:29 pm, Kenoli wrote:
> I want to insert the data from one record in one table into another
> table in a mysql database, adding the current date and time to a field
> in the table the data is going into. Thus when a record is changed, I
> am backing it up and indicating the date and time of the backup in a
> "date" field.
>
> The following is the method for copying data from a field in one table
> to another.
>
> INSERT INTO tbl_2 (fld_1, fld_2) SELECT tbl_1.fld_1, tbl_1.fld_2 FROM
> tb_1 WHERE tbl_1.fld_id = [some record number];
>
> How can I mix this with adding the new date/time data to a date field
> in table 2 as well?
>
> Thanks,
>
> --Kenoli
Just include another column with the value of NOW():
INSERT INTO tbl_2 (fld_1, fld_2, fld_date)
SELECT tbl_1.fld_1, tbl_1.fld_2, NOW()
FROM tb_1
WHERE tbl_1.fld_id = [some record number];
Re: Backing up from one table to another and adding date/time
am 23.01.2008 01:15:30 von kenoli
On Jan 22, 1:00=A0pm, ZeldorBlat wrote:
> On Jan 22, 3:29 pm, Kenoli wrote:
>
>
>
> > I want to insert the data from one record in one table into another
> > table in a mysql database, adding the current date and time to a field
> > in the table the data is going into. =A0Thus when a record is changed, I=
> > am backing it up and indicating the date and time of the backup in a
> > "date" field.
>
> > The following is the method for copying data from a field in one table
> > to another.
>
> > INSERT INTO tbl_2 (fld_1, fld_2) SELECT tbl_1.fld_1, tbl_1.fld_2 FROM
> > tb_1 WHERE tbl_1.fld_id =3D [some record number];
>
> > How can I mix this with adding the new date/time data to a date field
> > in table 2 as well?
>
> > Thanks,
>
> > --Kenoli
>
> Just include another column with the value of NOW():
>
> INSERT INTO tbl_2 (fld_1, fld_2, fld_date)
> SELECT tbl_1.fld_1, tbl_1.fld_2, NOW()
> FROM tb_1
> WHERE tbl_1.fld_id =3D [some record number];
Thanks. I'll try it. And it won't get confused looking for a NOW()
field in tbl_1?
--Kenoli
Re: Backing up from one table to another and adding date/time
am 23.01.2008 12:06:28 von Captain Paralytic
On 23 Jan, 00:15, Kenoli wrote:
> On Jan 22, 1:00 pm, ZeldorBlat wrote:
>
>
>
> > On Jan 22, 3:29 pm, Kenoli wrote:
>
> > > I want to insert the data from one record in one table into another
> > > table in a mysql database, adding the current date and time to a field
> > > in the table the data is going into. Thus when a record is changed, I
> > > am backing it up and indicating the date and time of the backup in a
> > > "date" field.
>
> > > The following is the method for copying data from a field in one table
> > > to another.
>
> > > INSERT INTO tbl_2 (fld_1, fld_2) SELECT tbl_1.fld_1, tbl_1.fld_2 FROM
> > > tb_1 WHERE tbl_1.fld_id = [some record number];
>
> > > How can I mix this with adding the new date/time data to a date field
> > > in table 2 as well?
>
> > > Thanks,
>
> > > --Kenoli
>
> > Just include another column with the value of NOW():
>
> > INSERT INTO tbl_2 (fld_1, fld_2, fld_date)
> > SELECT tbl_1.fld_1, tbl_1.fld_2, NOW()
> > FROM tb_1
> > WHERE tbl_1.fld_id = [some record number];
>
> Thanks. I'll try it. And it won't get confused looking for a NOW()
> field in tbl_1?
>
> --Kenoli
http://dev.mysql.com/doc/refman/5.0/en/select.html
Re: Backing up from one table to another and adding date/time information
am 23.01.2008 16:36:45 von IanP
Kenoli wrote:
> I want to insert the data from one record in one table into another
> table in a mysql database, adding the current date and time to a field
> in the table the data is going into. Thus when a record is changed, I
> am backing it up and indicating the date and time of the backup in a
> "date" field.
>
> The following is the method for copying data from a field in one table
> to another.
>
> INSERT INTO tbl_2 (fld_1, fld_2) SELECT tbl_1.fld_1, tbl_1.fld_2 FROM
> tb_1 WHERE tbl_1.fld_id = [some record number];
>
> How can I mix this with adding the new date/time data to a date field
> in table 2 as well?
>
> Thanks,
>
> --Kenoli
>
There is a field type that does this automatically - it auto updates
with the current_timestamp - have a look at TIMESTAMP
Re: Backing up from one table to another and adding date/time
am 23.01.2008 19:36:31 von kenoli
On Jan 23, 7:36=A0am, Ian Pawson wrote:
> Kenoli wrote:
> > I want to insert the data from one record in one table into another
> > table in a mysql database, adding the current date and time to a field
> > in the table the data is going into. =A0Thus when a record is changed, I=
> > am backing it up and indicating the date and time of the backup in a
> > "date" field.
>
> > The following is the method for copying data from a field in one table
> > to another.
>
> > INSERT INTO tbl_2 (fld_1, fld_2) SELECT tbl_1.fld_1, tbl_1.fld_2 FROM
> > tb_1 WHERE tbl_1.fld_id =3D [some record number];
>
> > How can I mix this with adding the new date/time data to a date field
> > in table 2 as well?
>
> > Thanks,
>
> > --Kenoli
>
> There is a field type that does this automatically - it auto updates
> with the current_timestamp - have a look at TIMESTAMP
Thanks