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
struct Person | |
{ | |
name: String | |
, age: u8 | |
} | |
fn main() | |
{ | |
// Create struct with field init shorthand |
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
CREATE GLOBAL TEMPORARY TABLE friendBook | |
( | |
friendName VARCHAR2(100) NOT NULL | |
, dateMet DATE NOT NULL | |
) | |
ON COMMIT PRESERVE ROWS; | |
/* | |
Truncate Table | |
*/ |
OlderNewer