select语句vb.net的语法

时间:2013-08-17 17:48:43

标签: mysql

我有主表频道,所有频道都有(这个大表有所有频道) 我有另一个表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 )

1 个答案:

答案 0 :(得分:0)

  • 您的问题不够明确,无法正确回答!
  • 使用表格primary key column中的channelsuser_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 &”' )