顧客テーブルがあり、id(主キー)内に「customer」+sequential_numberとの組み合わせがあります。
私がこのデータを持っているとしましょう:
customer9998 | name1 | birtdate1
customer9999 | name2 | birtdate2
customer10000 | name3 | birtdate3
customer10001 | name4 | birtdate4
このクエリを使用する場合:
select max(cust_id) from customer_table;
私はcustomer9999を取得しますが、これは正しくありません-特にSQLクエリ標準でこれを行う方法の提案はありますか?