adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / zippy_maps / docs / mysql_scratch_sheet_looking_at_tables_v001.sql
1 show databases;
2 #create database zipcodes;
3 use zipcodes;
4
5 describe categories;
6
7 select * from categories where image is null;
8
9 describe locations;
10
11 select * from locations where id > 3000;
12
13 # useful floating point compare technique.
14 select * from locations where abs(lat - '18.17') <= 1e-6;
15
16 select * from locations where id = 607;
17
18 select * from locations ;