Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE TABLE attributes (
cod int,
value_num numeric(19, 4),
value_char nvarchar(30)
)
CREATE TABLE attrib_num (
cod int,
value numeric(19, 4)
)
CREATE TABLE attrib_char (
cod int,
value nvarchar(30)
)