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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Get stock value from Google</title> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
<input id="marketCode" type="text" placeholder="Mercado, ex.: BVMF" value="BVMF" /> |
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
----------------------------------------------------------- | |
-- ADD TO A NEW TABLE | |
----------------------------------------------------------- | |
CREATE TABLE [SCHEMA].TABLE_NAME | |
( | |
id INT IDENTITY(1,1) NOT NULL PRIMARY KEY | |
,name VARCHAR(100) NOT NULL | |
,removed BIT NOT NULL DEFAULT(0) |