我有主表频道,所有频道都有(这个大表有所有频道) 我有另一个表user_channel,它只有这个用户频道(只有这个用户频道)
我需要从(表格频道)中获取所有在此特定用户频道列表中不存在的频道。
我试过这个但没用:
SELECT channel from channels where NOT EXISTS
(SELECT channel FROM user_channels WHERE
User_channel.user_name=’& Me.DataGridView_user_update.CurrentRow.Cells(0).Value.ToString &’” And
channels.channel_name = user_channels.channel_name )
答案 0 :(得分:0)
primary key column
中的channels
表user_channels
,而不是user_channels.channel_name
您应该user_channels.primaryKeyColumnOfTableChannels
现在我认为以下内容对您有用:
SELECT channel from channels where NOT EXISTS
(SELECT channel FROM user_channels WHERE
User_channel.user_name='" & Me.DataGridView_user_update.CurrentRow.Cells(0).Value.ToString &”' )