Page 1 of 1

get value from table

Posted: Wed Feb 02, 2005 7:02 am
by dmakris
Hello.
I have created a table in mysql in which I keep information about courses that people can study.
Some of the fields I use are course_name, category, key, etc.
There are many courses with different info for each one.
I also use a field as a key (pass) for the user to be able to join a specific course.
Is there any way to select a specific key of a specific course from the table and print it on screen?

Thanks in advance...

Posted: Wed Feb 02, 2005 9:36 am
by MrKnight

Code: Select all

SELECT key FROM table WHERE course_name  = 'php_mysql_education';