Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. System.out.println(startDate + "-" + endDate);
  2. ==============================================
  3.  
  4. Sun Jan 01 00:00:00 GMT 2017-Sun Dec 31 23:59:59 GMT 2017
  5.  
  6. Hibernate
  7. =========
  8.  
  9. Hibernate:
  10. select
  11. post0_.postId as postId1_1_,
  12. post0_.postContents as postCont2_1_,
  13. post0_.postDate as postDate3_1_,
  14. post0_.postName as postName4_1_,
  15. post0_.postTitle as postTitl5_1_,
  16. post0_.userId as userId6_1_
  17. from
  18. tw_post post0_
  19. where
  20. post0_.postDate between ? and ?
  21.  
  22. desc tw_post
  23. =============
  24.  
  25. postId int(11) NO PRI auto_increment
  26. postTitle text YES
  27. postName text YES
  28. postContents text YES
  29. postDate datetime YES
  30. userId int(11) NO MUL
  31. column_7 int(11) YES
  32.  
  33. select * from tw_post
  34. ======================
  35.  
  36. 1 Very Berry Smoothie Recipe the-recipe-for-the-smoothie-ive-been-having-most-mornings-is <p>The recipe for the smoothie I've been having most mornings is:</p><ul><li>Half a cup of blueberries</li><li>Half a cup of raspberries</li><li>Half a cup of strawberries</li><li>Half a cup of curly kale</li><li>Two desert spoons of plain yoghurt</li><li>A cup of almond milk</li></ul><p>Blend in blender or smoothie maker for 60 seconds.  Chill before drinking.  Watch out for kale and strawberry seeds in-between your teeth after drinking!</p> 2017-02-12 21:02:00 1
  37. 2 The Second Post (Probably Won't Work) id-be-shocked-if-it-worked <p>I'd be shocked if it worked...</p> 2017-02-13 21:02:00 1
  38. 3 Test 4 test-4 <p>Test 4</p> 2017-02-14 21:02:00 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement