Saturday, January 15, 2011

Retrieve Particular Fields from Table


To retrieve details present in some specific fields we have to select those fields from the table..Below example shows how to get a particular column say user_name from a table user_master which contains so many other fields also like user_id, user_age ..etc

eg: SELECT user_name FROM user_master;

here user_name is the column name , user_master is the table_name

No comments:

Post a Comment

Please Give Your Comments!!!