使用案例选择两个不同表的所有数据

时间:2017-11-09 07:49:08

标签: mysql phpmyadmin

有3个表

  1. register_user
  2. 客户
  3. 雇员
  4. 我需要写下面的查询

    class NewsDetailsView: UIView, UITableViewDelegate, UITableViewDataSource {
        var passingValue = Int()
        override func awakeFromNib() {
        print(passingValue)              //I understand that the value won’t be passed, since the view isn’t added yet
       }
    }
    

    如何执行此查询?

1 个答案:

答案 0 :(得分:0)

也许你正在努力实现以下目标?

40

您必须单独列出所有列(col1,col2)。我不知道有办法使用星号(*)进行这样的查询。