Константы в SQL
Красиво.
CREATE VIEW constants (pi, e, phi)
AS
SELECT 3.141592653, 2.718281828, 1.618033988
;
SELECT e FROM constants;
blog comments powered by Disqus
Programming is thinking, not typing |
|
Красиво.
CREATE VIEW constants (pi, e, phi)
AS
SELECT 3.141592653, 2.718281828, 1.618033988
;
SELECT e FROM constants;