Clarification is in order.
If you mean "all records in a table where a particular fields ends with 'data' " then you need to use the LIKE operator. If this is what you meant then look up "LIKE" as an operator in SQL using Access Help.
If you stated your problem exactly correctly, however, you want records from every table that has a name ending with "data" (and it is up to you to specify the records.)
In the latter case, the "right" way is to write VBA code that goes through the TableDefs collection, looking at TableDefs

.Name to see if "Data" ends the name. You can then go any of several ways about extracting records.
If this is what you meant, look up Access Help on these topics: TableDefs, Collections, Recordsets, and VBA topics on looping. You didn't say what you wanted to do with the data sets.
However, if this is only a one-time thing, it would be faster to do it by hand unless you have literally hundreds of candidate tables.