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);