Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 sql 查询:select name || 'hh' from table;
select name || 'hh' from table;
如何在 JDBC 中使用相同的语句?
String sql = "SELECT username || 'hh' from dba_users"; -----> not working PreparedStatement stmt = conn.prepareStatement (sql);