Guest User

Untitled

a guest
May 28th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. void query_three(Connection conn)
  2. {
  3. try
  4. {
  5. PreparedStatement ps = conn.prepareStatement(
  6. "create view Q6c as " +
  7. "SELECT Q6a.tutorialRef " +
  8. "FROM Q6a, Q6b " +
  9. "WHERE Q6a.tutorialRef = Q6b.tutorialRef " +
  10. "AND Q6b.PM_BOOKED > Q6a.AM_BOOKED"
  11. );
  12.  
  13. ps.executeQuery();
  14.  
  15.  
  16. ps.close();
  17.  
  18. } catch (Exception e) {
  19. e.printStackTrace();
  20.  
  21. }
  22. }
Add Comment
Please, Sign In to add comment