Select Multiple Columns From Multiple Tables

后端 未结 3 853
萌比男神i
萌比男神i 2021-01-14 06:18

I\'m a beginner at MySQL and I\'m having a hard time trying to figure out how to solve this problem:

I have two tables with many entries each. Let\'s say these are t

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-14 07:21

    SELECT a.dt2, b.dt4, b.dt5
    FROM table1 a, table2 b
    WHERE a.dt2 = 'asd'
    LIMIT 0,1;
    

提交回复
热议问题