aspose file tools
The moose likes JDBC and the fly likes SQL current year Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "SQL current year" Watch "SQL current year" New topic
Author

SQL current year

M Wilson
Greenhorn

Joined: May 23, 2010
Posts: 26
select distinct MODEL
from VEH_TABLE
where MAKE = 'Ford'
and VEH_YEAR = YEAR(CURRENT DATE)

I want to get the current year but VEH_YEAR is data type char (string) so the result errors because the data types are incompatible. How do you convert/cast YEAR(CURRENT DATE) to char? I tried, doesn't work cause incorrect?
and VEHICLE_YEAR = CAST (YEAR(CURRENT DATE) CHAR(4))

Thank you very much.
Ireneusz Kordal
Ranch Hand

Joined: Jun 21, 2008
Posts: 423
Depends on your database.
On Oracle there is TO_DATE conversion function, on MySQL - STR_TO_DATE function.


 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: SQL current year
 
Similar Threads
comparison of dates
Loops in a user defined date class
cast
Remove dates from an array list using iterator
Operators