Search Results

0
votes

Best way of store only date on datetime field?

If you're working on Oracle, inside your stored procedure use the TRUNC function on the datetime. This will return ONLY the date portion. …
1
vote

How to return multiple values in one column (T-SQL)?

Have a look at this thread already on StackOverflow, it conveniently gives y …