How to execute query "select * from Emp where emp_id=2" in DB2
How to execute query "select * from Emp where emp_id=2" in DB2
Collapse
X
-
Tags: None
-
First, you need to open db2cmd for windows or switch to the instance owner in *inux platforms.
Second, connect to the database.
Third, issue the command
Code:db2 "select * from Emp where emp_id=2"
Comment