如何在EA中的sql便笺簿中使用LIKE关键字

时间:2017-03-16 08:47:46

标签: enterprise-architect

如果关键字包含单词“Test”,我想从t_object获取一个对象。即使有“测试”或“已测试”,我也需要获取该行数据。

在sql中我们可以使用LIKE关键字。但是如何在EA SQL Scratch Pad中使用它??

    self.tabBar.barTintColor = .orange

    // set color of selected icons and text to white
    self.tabBar.tintColor = .white
    UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.white], for: .selected)


    // set color of unselected text to gray
    UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.gray], for: .normal)

以上内容不适用于EA。

1 个答案:

答案 0 :(得分:4)

取决于RDBMS。如果您使用EAP,则通配符为*。大多数人使用%。但Mickeysoft总是实现自己的风格。

(另见我的内幕书第13章。)