mirror of
https://github.com/google/nomulus.git
synced 2025-06-22 20:30:46 +02:00
Import code from internal repository to git
This commit is contained in:
commit
0ef0c933d2
2490 changed files with 281594 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
-- Currency Table Creation SQL
|
||||
--
|
||||
-- This query generates a static table of currency information.
|
||||
SELECT
|
||||
currency, conversionToUsd, exponent
|
||||
FROM
|
||||
(SELECT 'JPY' AS currency, 0.0098 AS conversionToUsd, 0 AS exponent),
|
||||
(SELECT 'USD' AS currency, 0.0100 AS conversionToUsd, 2 AS exponent)
|
Loading…
Add table
Add a link
Reference in a new issue