查询第二个表中的所有项目

时间:2012-02-05 07:47:39

标签: php mysql

我有两张桌子

CREATE TABLE table1 (id int primary key auto_increment,....);
CREATE TABLE table2 (id int primary key auto_increment,   
                     table1_id int foreign key references table1(id) on delete cascade,
                     item text not null,....);

我想知道如何根据table1的id获取表2中的所有项目。还有一些项目是用Uniode文本编写的,我不能使用查询从命令提示符中选择,因为我只在表格中看到奇数字符。

1 个答案:

答案 0 :(得分:0)

SELECT id, table1_id, item 
FROM table2 
WHERE table2.table1_id=table1.id