'java.sql.SQLException: ORA-00920: invalid relational operator (Eclipse)

I am using this sql query in jsp and getting invalid relational operator. I can not figure it out why it is giving me this error.

String gameName = request.getParameter("gameName");
session.setAttribute("gameName",gameName);
Statement st = con.createStatement();
String s2 = "select stock from game where g_name '"+gameName+"' ";
ResultSet rs1 = st.executeQuery(s2);
String stockDb = "";
rs1.next();
stockDb = rs1.getString(1);
session.setAttribute("stockDb",stockDb);
String stockDb1 = (String)session.getAttribute("stockDb");


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source