ms access - Database that use sql queries -
i run there's no data when run it...how can fix problem ? suggestion ?-microsoft access
using microsoft access (or other dbms tool), create tables (using ddl sql), , enter sample data (using ddl sql or gui). 5 records per table enough. use suitable data type each field. make sure create relationship between tables, using ddl sql. then, write dml sql queries answer questions below (one query per question) , run them.
- find names of pilots certified boeing aircraft
code far:
select distinct e.empname employee e,aircraft a,certified c e.empid=c.empid , c.aircraftid=a.aircraftid , a.aircraftname='boeing';
what start simplest possible select, , add conditions. in case, start with:
select distinct e.empname employee e,aircraft a,certified c`
and see there data. add first condition (i.e. where e.empid=c.empid
), second, etc., , , end distinct
. way, see problem might be.
also, aware if case (upper/lower) of contents. if database case-sensitive , 1 field in table "thisismydata" while in other "thisismydata", not match.
Comments
Post a Comment