我想知道是否有人能帮我更多地理解模型
我有两个表- users、conversation_replys
我需要运行以下SQL
<?php
$query= mysql_query("SELECT R.cr_id,R.time,R.reply,U.user_id,U.username,U.email FROM users U, conversation_reply R WHERE R.user_id_fk=U.user_id and R.c_id_fk='$c_id' ORDER BY R.cr_id ASC LIMIT 20") or die(mysql_e
我已经在Mysql中从Firebird数据库创建了一个数据库。在数据库中有一个公共顺序表(Common_ID),它为所有表(数据库中的45个表)生成序列。有些表格是
Table1 = Sequence (ID Auto-increment)-The Common Sequence Table
Table2 = Process (Sequence, Process_Number(Unique), Category_Name)
Table2 = Tasks (Sequence, Barcode(Unique), Process_Number(sequence from Process Table)
我在MySQL中有两个表,如下所示:
Table1如下:
ID (Primary Key Auto Increment) | Student Name | Age
Table2如下:
Teacher Name | Student ID (This is the Student ID from table1) | Email | Education
现在,我希望在一个查询中同时从表table1和table2中获取数据。
我想从学生ID等于某个值的两个表中检索这些值。
学生姓名|年龄|教师姓名
请告诉我如何从上面提到的两个表中查询值。我已经读了很多教程,但我不能正确地检索它。我是MySQL的新手,