Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
とにかくmysqlselect*を実行し、クエリに-不要なフィールドを指定する方法はありますか、それとも不要なフィールドを除いてすべて手動で入力する必要がありますか?
絶対にありません。
ただし、回避策は次のとおりです。VIEWテーブルのを作成します。例:
VIEW
CREATE VIEW ViewName AS SELECT col1, col2, col3, .... -- hide password here FROM tableName;
VIEWが作成されると、それを呼び出すことができます。
SELECT * FROM ViewName