Reputation: 61
What's the difference between name
and tbl_name
in sqlite_master
?
Upvotes: 6
Views: 2372
Reputation: 180080
As shown in the documentation, there is no difference if the entry describes a table.
For indexes and triggers, name
is the name of the object itself, while tbl_name
is the name of the table that the object belongs to.
Upvotes: 5