Foreign key / name interchangeability
○ plannedLook up a familiar name instead of memorizing an id; SQLly follows the relationship for you.
Databases are fond of ids; people are usually fond of names. With column
introspection configured, SQLly will let you search by name and insert the
id, following the foreign key when you complete
WHERE CustomerId = .
Configuring interchangeability
- Point an id column at the display column on its referenced table, such as
Customer.Name. - SQLly follows the foreign key when completion is requested for that id column.
- Type the readable name and SQLly inserts the matching id.
Screenshot needed
intellisense-fk-name