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
| (Invoke-WebRequest “http://api.ipify.org”).Content |
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 DATABASE moviedb; | |
| USE moviedb; | |
| CREATE TABLE creditcards ( | |
| id varchar(20) DEFAULT NULL, | |
| first_name varchar(50) DEFAULT NULL, | |
| last_name varchar(50) DEFAULT NULL, | |
| expiration date DEFAULT NULL | |
| ); |