我想为与另一个表连接的每个 ID 部分从 1 个表中选择最后一条记录。这些表之间的连接是: notes.user_id = application_forms.id 然后 notes.post_by_id = application_forms.user_id 我想为每个 notes.user_id 选择最后一条记录,以便我可以根据用户输入的一些注释在字体上显示不同的 CSS ,希望很清楚,如果不是我在这里
第一桌
CREATE TABLE notes (
note_id int(255) NOT NULL AUTO_INCREMENT,
note_when timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
user_id int(255) DEFAULT NULL,
post_by_id int(255) DEFAULT NULL,
note text,
PRIMARY KEY (note_id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
第二张桌子
CREATE TABLE application_forms (
id int(255) NOT NULL AUTO_INCREMENT,
user_id int(255) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;