How to make only ONE Sql query?

One SQL query question?

  • I have a table, studentname, age 100 records, how do i query it as studentname, age and enrolldate, the date must unique to each record. the date can be start from anydate such ...show more

  • Answer:

    This case need both JOIN statement and subquery. The query should be this: SELECT sname, age, enrollment_dateFROM student,enrollment JOIN student.student_id, enrollment.student_id WHERE (SELECT UNIQUE(enrollment.enrollment_date) FROM enrollment); For this you have to create two tables that are student, enrollment and join the two table through the unique id + common to both that is student_id

A6264BVALTKOKX6WCFRU55UYUU at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

create another table and in that update max(date)+1 next to each record.but this will be a very dirty job. there could be another way by using row_id for each row and using a self join of 1st record of 1st table to 2nd record of the 2nd table.And then try date+1...U'll have to figure out how to do it...just an idea...all the best

Lost

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.