Tagged Questions
3
votes
3answers
4k views
Proper DateTime Format for a Web Service
I have a webservice with a method which is called via a xmlhttprequest object in my javascript. The method accepts a datetime parameter which is subsequently converted to a string and run against the ...
2
votes
2answers
2k views
How do I trim date in PLSQL?
I have a date variable as 24-dec-08
I want only the 08 component from it.
How do I do it in a select statement?
e.g.:
select db||sysdate
(this is the component where I want only 08 from the date)
...
2
votes
9answers
7k views
SQL date format issue in select query
I have an ASP page which will fetch records from a SQL server DB table. The table "order_master" has a field called order_date. I want to frame a select query to fetch order date > a date entered by ...
1
vote
5answers
124 views
SQL Select Query with single field as formatted and remaining fields as wildcard
I'm trying to fetch records from a table in MySQL 5.5 (Community Server) which has 22 fields in total, the first field is of type DATETIME, and I want that field formatted with DATE_FORMAT() method, ...
0
votes
2answers
48 views
Convert CMMDDYY into date in SQL Server
If I have a date string in the format of CMMDDYY
C = 0, 1 or 2 where 0 represents 19, 1 represents 20 and 2 represents 21
Example:
1022511 would be 02/25/2011 in mm/dd/yyyy format.
Is there a way ...