Skip to content

Instantly share code, notes, and snippets.

@gabidavila
Created February 10, 2018 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabidavila/d33c85d4599f5d1cc1ca8a9741b6f467 to your computer and use it in GitHub Desktop.
Save gabidavila/d33c85d4599f5d1cc1ca8a9741b6f467 to your computer and use it in GitHub Desktop.
-- Virtual Column
ALTER TABLE `laps`
ADD COLUMN speed DOUBLE
GENERATED ALWAYS
AS (`distance` / `time`);
-- Stored Column
ALTER TABLE `laps`
ADD COLUMN speed DOUBLE
GENERATED ALWAYS
AS (`distance` / `time`) STORED;
-- Drop Column
ALTER TABLE `laps`
DROP COLUMN speed;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment