Skip to content

Instantly share code, notes, and snippets.

@gguuss
Created October 30, 2019 12:34
Show Gist options
  • Save gguuss/7307cb70809e9b52515dae37f4136cd2 to your computer and use it in GitHub Desktop.
Save gguuss/7307cb70809e9b52515dae37f4136cd2 to your computer and use it in GitHub Desktop.
Create a MySQL database for storing wifi strength
create database wifistr;
use wifistr;
create table wifistr(id int auto_increment primary key not null, wifistr varchar(32));
desc wifistr;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment