Ask a Question related to Coldfusion Database Access, Design and Development.
-
woribhabor #1
mySQL Update Date
i want to update the time portion of a date column without knowing or change
the actually day.
so if the list of dates were
xDate
2006-01-12 21:00
2006-01-13 18:00
2006-01-14 16:00
2006-01-15 10:00
2006-01-16 19:00
I want a query that can change all the times 16:00
I am attempting something like
update TABLE_NAME
set xDate = date(date_format(xDate, '%y-%c-%d') & '21:00')
that would keep the same day for every record but update the time to 21:00
woribhabor Guest
-
Use a CFC to update a database with a date
Hi All, I am trying to input a date in a database field with the current date. The datefield is in one table and I only want the date to be inserted... -
Update Access with today's date
I am creating a form to allow the user to enter new records to an Access database. I want to have a hidden field that enters the date of record... -
PHP Date into MySQL
Hi, I have the following script that is installed to obtain the date 7 days into the future and display 1 weeks worth of dates (minus Sunday). I... -
date mysql
Hi I have troubles with converting a date value to unixtime! In mysql I have a table named date TYPE "DATE" (2003-09-05) Now I want it to convert... -
Date update?
Does anyone know how to have the date on your home page update automatically? I can't find any code. Thanks in advance! --Nathan -
Dan Bracuk #2
Re: mySQL Update Date
I don't know mySQL syntax, but your suggested query looks like it wants a where clause of some sort.
Dan Bracuk Guest
-



Reply With Quote

