Created
June 1, 2011 06:29
-
-
Save wkerzendorf/1001881 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
stars.name, | |
obs.id, | |
fit_gridchi_1.vcorr, | |
fit_gridchi_1.teff, | |
fit_gridchi_1.logg, | |
fit_gridchi_1.feh, | |
fit_gridchi_1.chi, | |
fit_minuit_1.teff, | |
fit_minuit_1.logg, | |
fit_minuit_1.feh, | |
fit_minuit_1.chi, | |
stelparam_phot.teff, | |
stelparam_laird.teffvk, | |
stelparam_laird.fehvk | |
from spectra | |
inner join stars | |
on spectra.star_id=stars.id | |
inner join obs | |
on spectra.obs_id=obs.id | |
inner join stars | |
on spectra.star_id | |
inner join fit_gridchi_1 | |
on spectra.id=fit_gridchi_1.id | |
inner join fit_minuit_1 | |
on spectra.id=fit_minuit_1.id | |
left join stelparam_phot | |
on spectra.star_id=stelparam_phot.id | |
left join stelparam_laird | |
on spectra.star_id=stelparam_laird.star_id | |
order by stars.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment