Home Answers Viewqa JDBC Where clause

 
 


guna
Where clause
1 Answer(s)      a year ago
Posted in : JDBC

I have doubt in Where clause .. i got a Employid from user and check the id and display the details of that id what can i do?

View Answers

June 15, 2012 at 12:42 PM


The WHERE clause is used to filter records.It is used to extract only those records that fulfill a specified criterion.

SQL WHERE Syntax:

SELECT column_name(s)
FROM table_name
WHERE column_name = value;

Example:

In the given example, we have accepted the id from the user and retrieve the record of that user from the database.

import java.sql.*;
import java.util.*;

class RetrieveData 
{
    public static void main(String[] args) throws Exception
    {
        Scanner input=new Scanner(System.in);
        System.out.print("Enter id: ");
        int id=input.nextInt();
        Class.forName("com.mysql.jdbc.Driver").newInstance();
        Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "root" );
        Statement st=conn.createStatement();
        ResultSet rs=st.executeQuery("select * from data where id="+id+"");

        while(rs.next()){
            String name=rs.getString("name");
            String address=rs.getString("address");
            String contact=rs.getString("contactNo");
            String email=rs.getString("email");

            System.out.println(name+" \t "+address+" \t "+contact+" \t "+email);

        }
    }
}









Related Pages:
Where clause
Where clause  I have doubt in Where clause .. i got a Employid from...; The WHERE clause is used to filter records.It is used to extract only those records that fulfill a specified criterion. SQL WHERE Syntax: SELECT column
Where and Having clause
Where and Having clause   hii, What is the difference between where and having clause?   hello, WHERE clause is used to impose... BY clause. HAVING clause is used to impose condition on GROUP Function
where clause in select statement
where clause in select statement  In Mysql,I write the following query: select * from emp where designation = "MANAGER" But the actual value... nly if the where condition is "manager" and not "MANAGER
What is the difference between a HAVING CLAUSE and a WHERE CLAUSE?
What is the difference between a HAVING CLAUSE and a WHERE CLAUSE?  What is the difference between a HAVING CLAUSE and a WHERE CLAUSE?   Hi, Both HAVING and WHERE clause used for specifying the search condition in SQL
Where Clause in SQL
Where Clause in SQL       The Where clause in SQL query is used  with the SELECT keyword.' Where' clause search the data with a particular condition. In case the data
Mysql Date in where clause
Mysql Date in where clause     ... records from table employee1 on the basis of condition specified in WHERE clause... in Where clause. The given Query create table employee1 is used to create a table
Explain the use of the ‘LIKE’ keyword used in the WHERE clause?
Explain the use of the ?LIKE? keyword used in the WHERE clause?   Explain the use of the ?LIKE? keyword used in the WHERE clause
Explain the use of the ‘LIKE’ keyword used in the WHERE clause?
Explain the use of the ?LIKE? keyword used in the WHERE clause?   Explain the use of the ?LIKE? keyword used in the WHERE clause
HQL Where Clause Example
HQL Where Clause Example       Where Clause is used to limit the results returned from... lngInsuranceId='1' Where Clause can be used with or without Select Clause. Here
Hibernate WHERE Clause
Hibernate WHERE Clause In this tutorial you will learn how to use HQL where clause. Use of WHERE clause in hibernate is as same as it used in SQL... a HQL where clause can be used. To achieve the solution of such problem
SQL Aggregate Functions Where Clause
SQL Aggregate Functions Where Clause       SQL Aggregate Functions Where Clause return you the aggregate sum of the records based on the condition specified in Where Clause condition
JDBC: WHERE Clause Example
JDBC: WHERE Clause Example In this section, we will discuss how to use WHERE.... WHERE Clause : MySql Where Clause is used to write some condition and data... of WHERE Clause in JDBC..."); Connection con = null; Statement statement = null
Using WHERE Clause in JDBC
Using WHERE Clause in JDBC    Where... conditions. It allows to filter the data from a table, a WHERE clause can be added to the SELECT statement. The WHERE clause searches the specific results
JPA Query with where clause and group by function
JPA Query with where clause and group by function  Any thing wrong in my JPA Query. TypedQuery<RaBdrRating> uQuery = (TypedQuery<...(charge),COUNT(activePackage) FROM User WHERE callType = :callType and startDate
PHP SQL Query Where Clause
PHP SQL Query Where Clause       This example illustrates how to create and execute the sql query with where clause. To understand how to display the result returned 
SQL Aggregate Functions In Where Clause
SQL Aggregate Functions In Where Clause       SQL Aggregate Function In Where Clause return... specified in the 'Stu_Name'. In order to overcome, we use the WHERE clause
SQL Aggregate Functions Where Clause
SQL Aggregate Functions Where Clause       SQL Aggregate Functions Where Clause is used... Where Clause. To understand and grasp example we create a table 'Stu
What is the difference between IN and BETWEEN, that are used inside a WHERE clause?
What is the difference between IN and BETWEEN, that are used inside a WHERE clause?  What is the difference between IN and BETWEEN, that are used inside a WHERE clause?   Hi, The BETWEEN clause is used to fetch a range
WHERE Statement in SQL
WHERE Clause in SQL        WHERE clause is used with the SELECT keyword. ' Where' is a clause which is used for searching the data with a particular condition.  
HOW CN I USE WHERE AND BETWEEN CLAUSE SIMULTANEOUSLY... IN MYSQL
HOW CN I USE WHERE AND BETWEEN CLAUSE SIMULTANEOUSLY... IN MYSQL  sir, how can i use WHERE and BETWEEN clause simultaneously..? my tables details... WHERE _exp_date BETWEEN ('2009-07-01' AND '2011-07-30') AND _exp_for_id = 1
Mysql Where
Clause. The Where Clause restricts the select query and shows you only the records specified in the Where Clause conditions. Understand with Example...' that are specified in Where Clause. In this example the table returns records whose salary
Mysql where
specified in Where CLAUSE. Understand with Example The Tutorial... where clause: The Query given below return the empname record from mytable whose salary is 20000 as specified in WHERE Clause. mysql>
Explain the use of the ?LIKE? keyword used in the WHERE clause? Explain wildcard characters in SQL.
Explain the use of the ?LIKE? keyword used in the WHERE clause? Explain wildcard characters in SQL.  Explain the use of the ?LIKE? keyword used in the WHERE clause? Explain wildcard characters in SQL
Explain the use of the ‘LIKE’ keyword used in the WHERE clause? Explain wildcard characters in SQL.
Explain the use of the ?LIKE? keyword used in the WHERE clause? Explain wildcard characters in SQL.  Explain the use of the ?LIKE? keyword used in the WHERE clause? Explain wildcard characters in SQL
MySQL Case In Where Clause
MySQL Case In Where Clause       This example illustrates how to use case statement where clause...; Output: Using MySQL 'case' and 'where' clause: SELECT daysName
Mysql Where Statement
on the basis of specified condition in Where Clause. The Where Clause restricts...; statement: The Query  Where Clause returns only those records from table specified in Where Clause. In this example the table returns only those
SQL HAVING Clause
condition for a group or aggregate. The HAVING clause works with where.... The Where clause is applicable to individual rows.  Create Table Stu_Table... SQL HAVING Clause      
SQL HAVING Clause
condition for a group or aggregate. The HAVING clause works with where.... The Where clause is applicable to individual rows.  Create Table Stu_Table... SQL HAVING Clause      
Php Sql Where
Php Sql Where This example illustrates how to use the WHERE clause in the UPDATE query in PHP. In this example we create a UPDATE query with WHERE clause to update the field emp_name where name is 'amar'. In the figure below the first
PHP SQL Where
definition based on the condition specified in Where Clause. The PHP SQL Where allows you to update the field based on the condition specified in Where Clause... PHP SQL Where      
SQL Aggregate Functions In Where Clause
SQL Aggregate Functions In Where Clause       SQL Aggregate Function In Where Clause return.... To do this, we use the WHERE keyword. The syntax is as follows: Create
SQL Backup query with where statement
SQL Backup query with where statement       SQL Backup query with where statement  is used to construct a backup table using where clause. The Where Clause
HQL from clause Example
HQL from clause Example     ... clause. The from clause is the simplest possible Hibernate Query. Example of from clause is: from Insurance insurance Here is the full code of the from clause
HAVING Clause in JPQL (Java Persistence Query Language)
to each group of grouped table, much as a WHERE clause is applied to a select list... HAVING Clause in JPQL (Java Persistence Query Language... to use of HAVING Clause in jpql (Java Persistence Query Language). HAVING Clause
Hibernate SELECT Clause
Hibernate SELECT Clause In this tutorial you will learn how to use HQL select clause. Use of SELECT clause in hibernate is as same as it used in SQL... example which will demonstrate you how a HQL select clause can be used. To achieve
HQL Between clause, HQL Between example
HQL Between clause example In this tutorial you will learn how to use HQL Between clause to select a range of entity falling between 2 and 6. You can... and 6. The HQL Between used for this purpose is: // Create HQL Between clause
JDBC: LIKE Clause Example
JDBC: LIKE Clause Example In this section, you will learn how to use LIKE Clause for selection of table records using JDBC API. LIKE Clause : Like Clause is used for comparing part of string. For pattern matching we use
php MySQL order by clause
php MySQL order by clause:       In SQL generally we use three clauses, select ,from, and where. .... Order by is one of the important clause of SQL. Order by clause is used to sort
SQL Backup query with where statement
SQL Backup query with where statement       SQL Backup query with where statement  is used to construct a backup table using where clause. The Where Clause
THE key Word WHERE in SQL, SQL Tutorial
WHERE Clause in SQL        WHERE clause is used with the SELECT keyword. ' Where' is a clause which is used for searching the data with a particular condition.  
PHP SQL Select Where
PHP SQL Select Where       PHP SQL Select Where is used to provide the records from the table that meet the specific criteria and print the records on the browser. The Where Clause
Mysql PHP Where
on the basis of condition specified in WHERE Clause. <?php $database="... Mysql PHP Where       Mysql PHP Where is used to insert the records from database and print
Select Clause in hibernate.
Select Clause in hibernate.  Example of select clause of hibernate
Select Clause in hibernate.
Select Clause in hibernate.  Example of select clause of hibernate
Select Clause in hibernate.
Select Clause in hibernate.  Example of select clause of hibernate
Hibernate In Clause
In this section we will introduce concept of Hibernate In Clause
SQL IN Operator
; SQL IN Operator helps you to specify multiple values in a WHERE Clause... specify multiple values in WHERE Clause. SELECT ColumnName(s) FROM TableName WHERE ColumnName IN(value1, value2
select clause in hibernate
select clause in hibernate  Example of select clause of hibernate?   Select clause is used for selection of records from a database... This is your select clause, picking the employee details as employee name,salary and date
SQL Functions
of  table definition based on the condition specified in Where Clause. The PHP... in Where Clause.    MySQL Append String...; Mysql where Mysql Where is used
Mysql date equal
condition specified in  where clause. Understand with Example The Tutorial... in where clause. In this Query this show you the records from a table 'Employee' based on the date '2008-12-22' condition in where clause. mysql> select