Last active
March 22, 2016 14:27
-
-
Save cesarAugusto1994/bf2696ae0bbc6cb0034e to your computer and use it in GitHub Desktop.
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 TABLE webpdv.taxa_juros_cartao ( | |
id INT PRIMARY KEY AUTO_INCREMENT, | |
cardno SMALLINT(6), | |
parcela TINYINT(4), | |
acrescimo DECIMAL(10,8), | |
cet DECIMAL(10,8), | |
taxa_mes DECIMAL(13,10), | |
taxa_ano DECIMAL(13,10) | |
); | |
CREATE INDEX w1 ON webpdv.taxa_juros_cartao (cardno); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment