This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title": "Hello!" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import UIKit | |
| /// SwifterSwift: UIImage tinted with color | |
| /// | |
| /// - Parameters: | |
| /// - color: color to tint image with. | |
| /// - blendMode: how to blend the tint | |
| /// - Returns: UIImage tinted with given color. | |
| func tint(_ color: UIColor, blendMode: CGBlendMode) -> UIImage { | |
| let drawRect = CGRect(x: 0.0, y: 0.0, width: size.width, height: size.height) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 1. | |
| CREATE TABLE logtabla ( | |
| muvelet VARCHAR2(20), | |
| datum DATE, | |
| szint VARCHAR2(20), | |
| azon VARCHAR2(50) | |
| ); | |
| -- 2. | |
| CREATE TABLE auto AS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 1. | |
| CREATE TABLE logtabla ( | |
| muvelet VARCHAR2(20), | |
| datum DATE, | |
| szint VARCHAR2(20), | |
| azon VARCHAR2(50) | |
| ); | |
| -- 2. | |
| CREATE TABLE auto AS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| f.AZON, | |
| m.JO, | |
| m.MEGJEGYZES, | |
| f.FELADAT | |
| FROM HDBMS18.FELADATAIM f | |
| LEFT JOIN HDBMS18.MEGOLDASAIM m | |
| ON f.AZON = m.FELADAT_AZON | |
| WHERE m.JO = '?' OR m.JO = 'n' OR m.JO IS NULL | |
| ORDER BY f.HATARIDO, f.AZON; |