1
ALTER table counties add public_schools DECIMAL(5,4), public_trans DECIMAL(6,5);

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'DECIMAL(6,5)' at line 1

1 Answer 1

3

You need to repeat add:

ALTER table counties
    add public_schools DECIMAL(5, 4),
    add public_trans DECIMAL(6, 5);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.