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.
私は少なくとも1950年の誕生日の人の名前を取得しようとしています。
SELECT Person.names... ..WHERE SELECT EXTRACT(YEAR FROM Person.dateOfBirth) => 1950;
このクエリの何が問題になっていますか?
このYEAR()関数はDATETIME、MySQLのフィールドから年を整数として返します。
YEAR()
DATETIME
SELECT Person.names FROM Person WHERE YEAR(Person.dateOfBirth) >= 1950;