Can I name my items the same as my item name?
or
What is the common best practice to name row name?
“Row Name” and “IteamName” (you seem to have a typo in your row struct) have no connection to each other. The Row Name is used to retrieve a row from the table and all other columns (including ItemName) are things you added to your struct and can be basically anything (strings, numbers, resource pointers).
I don’t think there are any special “best practices” for row naming, just put something descriptive enough to know what the row contains (so don’t name them “0”, “1”, “2”, etc.). You’ll be using this name as an input to the “Get Data Table Row” blueprint node to get the data (i.e. all other columns).
Row name
is the Primary Key
for the row. It’s what you use to fetch a specific row.
Whether you have a column that matches the row name is entirely up to your design and usage. Yet in general it points to a design issue.
(post deleted by author)