|
|
|
|
|
by sbuttgereit
496 days ago
|
|
For what it's worth. I like to call out views in the naming. I'll typically use a "vw_" prefix prior to a name which would be similar to table naming. "v_" is also an option, but I also write a lot of DB functions and stored procedures and with all the types, tables, and column names that get used, indicating variables and parameters can be helpful... so "v_" indicates a variable name in the function context which is why views get "vw_". |
|