Skip to main content

Urgent openings for Web Designers

Company        Click2Face

Website          www.click2face.com

Eligibility        UG-(Any Graduate, Any Specialization), PG-(Any PG Course, Any Specialization)

Experience     2-4 Year


Location         Hyderabad

Click2Face
Job Role: Web Designer & Php Developer

Job Summary :

Job Description:

• Should Have Real Time Experience.

• Should Have Experience On Photoshop, Flash, Dreamviewer.

• Good Experience on Jquery ,Ajax, Cms will be added advantage.

Eligibility: Php, Mysql, Joomla, Jquery, Ajax, Flash.

Experience: 2-4 years.

Location: Hyderabad.

Job Role: Web Designer & Php Developer.

Qualification: UG-(Any Graduate, Any Specialization), PG-(Any PG Course, Any Specialization).

Salary: Not Disclosed By Recruiter.

Forward Your Resume: admin@click2face.com

Comments

Popular Posts

How to find out Max Salary from each department

You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum salary in each group or each department. SQL Query: SELECT DeptID, MAX(Salary) FROM Employee  GROUP BY DeptID. This questions become more interesting if Interviewer will ask you to print department name instead of department id, in that case you need to join Employee table with Department using foreign key DeptID, make sure you do LEFT or RIGHT OUTER JOIN to include departments without any employee as well.  Here is the query